up vote 4 down vote favorite
3
share [g+] share [fb]

If I have this

window.onresize = function() {
  alert('resized!!');
};

My function gets fired multiple times throughout the resize, but I want to capture the completion of the resize. This is in IE.

Any ideas? There are various ideas out there, but not has worked for me so far (example IE's supposed window.onresizeend event.)

link|improve this question

50% accept rate
Your version of windows is configured to repaint the screen while you resize window. So the event is firing properly. You can adjust this in your advanced performance settings in System Properties. – Josh Stodola Sep 30 '09 at 21:31
feedback

5 Answers

up vote 11 down vote accepted

In this case, I would strongly suggest debouncing. The most simple, effective, and reliable way to do this in JavaScript that I've found is Ben Alman's jQuery plugin, Throttle/Debounce (can be used with or without jQuery - I know... sounds odd).

With debouncing, the code to do this would be as simple as:

$(window).resize($.debounce(1000, function() {
   // Handle your resize only once total, after a one second calm.
   ...
}));

Hope that can help someone. ;)

link|improve this answer
First line is more like $(window).resize($.debounce(1000, true, function(e) { – Philippe Jun 9 '10 at 20:07
@Philppe: That's interesting, because that's not what Ben's sample says, nor is that what I have in my working code. – Lance May Jun 9 '10 at 20:47
@Lance May : That's odd because if you look the source of his example page jsfiddle.net/cowboy/cTZJU/show, it's exactly as I wrote. Maybe he updated his script? Edit your answer, I'll vote it up. – Philippe Jun 10 '10 at 19:32
@Philippe: The link I gave in the post is the only page I've viewed from him on the matter (as it's most certainly clear enough there). The debounce example shown directly on that page shows exactly $('input:text').keyup( $.debounce( 250, ajax_lookup ) );, and this is what I have used in my own code as well. The ... true, ... option that you are down ranking me for is clearly stated as optional and defaulting: "Debounced with at_begin specified as false or unspecified:". – Lance May Jun 10 '10 at 20:07
I have a demo that gives an error with your line but not with mine. The 'new' keyword makes IE7 bark a javascript 'error on object blabla'. If you could edit your post, I will be able to upvote. – Philippe Jun 10 '10 at 20:53
show 2 more comments
feedback

You get multiple events because there really are multiple events. Windows animates the resize by doing it several times as you drag the window (by default, you can change it in the registry I think).

What you could do is add a delay. Do a clearTimeout, setTimout(myResize,1000) every time the IE event fires. Then, only the last one will do the actual resize.

link|improve this answer
feedback

This is not perfect but it should give you the start you need.

var initialX = null;
var initialY = null;
var lastResize = null;
var waiting = false;
var first = true;
var id = 0;

function updateResizeTime()
{
    if (initialX === event.clientX && initialY === event.clientY)
    {
        return;
    }

    initialX = event.clientX;
    initialY = event.clientY;

    if (first)
    {
        first = false;
        return;
    }

    lastResize = new Date();    		
    if (!waiting && id == 0)
    {
        waiting = true;
        id = setInterval(checkForResizeEnd, 1000);
    }
}

function checkForResizeEnd()
{
    if ((new Date()).getTime() - lastResize.getTime() >= 1000)
    {
        waiting = false;
        clearInterval(id);
        id = 0;
        alert('hey!');
    }
}

window.onresize = function()
{
    updateResizeTime();
}
link|improve this answer
feedback

I always use this when I want to do something after resizing. The calls to set- and clearTimeout are not of any noticable impact on the speed of the resizing, so it's not a problem that these are called multiple times.

var timeOut = null;
var func = function() { /* snip, onresize code here */};
window.onresize = function(){
   if(timeOut != null) clearTimeout(timeOut);
   timeOut = setTimeout(func, 100);
});
link|improve this answer
feedback

I liked Pim Jager's elegant solution, though I think that there's an extra paren at the end and I think that maybe the setTimeout should be "timeOut = setTimeout(func,100);"

Here's my version using Dojo (assuming a function defined called demo_resize())...

var _semaphorRS = null;
dojo.connect(window,"resize",function(){
 if (_semaphorRS != null) clearTimeout(_semaphorRS);
 _semaphorRS = setTimeout(demo_resize, 500);
 });

Note: in my version the trailing paren IS required.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.