That is different. Most people prefer IE's functionality in this case.
You could possibly use setTimeout along with a flag that if it hasn't been X milliseconds, don't run the code in the resize event. Kinda klunky but the only thing I can think of right now. -- Brandon Aaron On 5/3/07, MikeR <[EMAIL PROTECTED]> wrote:
I'm just wondering if anyone knows of a fix for IE6's onresize... Example: $(document).resize(function() { $('body').append('Resized<br/>'); } That will execute several times as you are resizing the browser. I'm looking for Firefox-like functionality.. where it fires the event one time when you have finished resizing. Has anyone had any luck? Thanks in advance.