Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the correct (modern) method for tapping into the window resize event that works in Firefox, WebKit, and Internet Explorer?

And can you turn both scrollbars on/off?

share|improve this question
I'm also looking into this. I'd like to try to apply the solutions offered here, but I'm afraid I don't understand the syntax: $(window). Is that something specific to jquery? – Byff Feb 15 '11 at 23:59
Byff, yes, $(window) is a jQuery construct. window.onresize is the equivalent in raw JavaScript. – Andrew Hedges Mar 25 '11 at 6:11
This demo may help anybody to test on all browsers jsfiddle.net/subodhghulaxe/bHQV5/2 – user1868660 Apr 6 at 11:20

6 Answers

up vote 178 down vote accepted

jQuery has a built-in method for this:

$(window).resize(function () { /* do something */ });

For the sake of UI responsiveness, you might consider using a setTimeout to call your code only after some number of milliseconds, as shown in the following example, inspired by this:

function doSomething() {
    alert("I'm done resizing for the moment");
};

var resizeTimer;
$(window).resize(function() {
    clearTimeout(resizeTimer);
    resizeTimer = setTimeout(doSomething, 100);
});
share|improve this answer
17  
Why this event is not fired when window is expanded to full screen with button? – Sly Aug 31 '11 at 14:14
1  
@Sly For me it works,in Safari, Chrome and Mozilla on Mac. Which browser do you use? – Vlad Shyshov Oct 25 '12 at 20:40
@Sly: $('.button').on({ click: function(){ /* your code */ $(window).trigger('resize') }) – zzatkin Jan 7 at 20:29
Also of note is that if you call a named function just type the name, don't quote it or put parentheses if there are no arguments to pass to it.) – Elijah Lynn Mar 13 at 20:02
1  
Elijah, this is JavaScript. What you wrote is not correct (except for one specific case when you are constructing with new). – Yoh Suzuki Mar 13 at 21:00
show 1 more comment
$(window).bind('resize', function () { 

    alert('resize');

});
share|improve this answer
Thanks. That did the trick for me. – pelms Sep 17 '09 at 14:17
1  
I prefer the bind approach, since the resize() method is actually actually a shortcut for the full bind approach, and I often find that there is usually more than one event handler I should be applying to an element. – Mike Kormendy Sep 10 '12 at 2:47
@Mike - Not only that, but I'm guessing the resize method has no "unbind" method in the event you want to remove the listener. "bind" is definitely the way to go! – Shane May 1 at 13:26

Sorry to bring up an old thread, but if someone doesn't want to use jQuery you can use this:

function foo(){....};
window.onresize=foo;
share|improve this answer

Since you are open to jQuery, this plugin seems to do the trick.

share|improve this answer
+1 and Answer. Good find. – brun Mar 1 '09 at 5:47

I consider the jQuery plugin "jQuery resize event" to be the best solution for this as it takes care of throttling the event so that it works the same across all browsers. It's similar to Andrews answer but better since you can hook the resize event to specific elements/selectors as well as the entire window. It opens up new possibilities to write clean code.

The plugin is available here

There are performance issues if you add a lot of listeners, but for most usage cases it's perfect.

share|improve this answer

I think you should add further control to this:

    var disableRes = false;
    var refreshWindow = function() {
        disableRes = false;
        location.reload();
    }
    var resizeTimer;
    if (disableRes == false) {
        jQuery(window).resize(function() {
            disableRes = true;
            clearTimeout(resizeTimer);
            resizeTimer = setTimeout(refreshWindow, 1000);
        });
    }
share|improve this answer

protected by Robert Harvey Feb 15 '11 at 23:59

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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