Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
javascript resize event firing multiple times while dragging the resize handle

Tried :

$(window).bind('load resize', function (e) {
    console.log("resized");
});

but it wrote "resized" for every small movement of the window. Can I call a function (In this example, that console.log()) only when I finish (I stop) to resize the window?

Thank you!

share|improve this question
The resize event fires continuously while the dimensions of the window are changing; there's no event that would signal that resizing has finished. – Cory Aug 21 '12 at 13:34
2  
This post in particular has your answer stackoverflow.com/a/668185/54746 – CaffGeek Aug 21 '12 at 13:35

marked as duplicate by Tim S. Van Haren, Jakub Konecki, Yoshi, Jleagle, Cory Aug 21 '12 at 14:08

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 2 down vote accepted

Maybe you simply define resize is finished if there is no new resize event within the next 100 ms. Like this:

var resizeEnd;
$(window).bind('resize', function(e) {
    clearTimeout(resizeEnd);
    resizeEnd = setTimeout(function() {
        console.log("resized");
    }, 100);
});
share|improve this answer
Why your works and mine not? jsfiddle.net/FpXQq – markzzz Aug 21 '12 at 13:48
1  
.setTimeout needs a function as argument. you need to change it to timerResizer = setTimeout(function () {console.log("resized")}, 1000); – kannix Aug 21 '12 at 13:53
1  
Besides you don't need that if (timerResizer !== false) check.. calling clearTimeout with undefined as argument is no problem ;) – kannix Aug 21 '12 at 13:55

Resize would continuously fire while the window is being resized and it wouldn't fire when it is not being resized. So there isn't a way for you to recognize when a continuous resizing has stopped, so stick to logic that works upon firing of the resize event.

share|improve this answer

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