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.

As you are aware, in Internet Explorer, the window.resize event is fired when any element on the page is resized. It does not matter whether the page element is resized through assigning/changing its height or style attribute, by simply adding a child element to it, or whatever -- even though the element resizing does not affect the dimensions of the viewport itself.

In my application, this is causing a nasty recursion, since in my window.resize handler I am resizing some <li> elements, which in turn re-fires window.resize, etc. Again, this is only a problem in IE.

Is there any way to prevent window.resize from firing in IE in response to elements on the page being resized?

I should also mention that I'm using jQuery.

share|improve this question
1  
Interesting, I didn't know that. I'm not familiar with JQuery but it should be possible to stop the event if its source element is not the window itself. I'm sure somebody will come up with a coded solution. – Pekka 웃 Dec 5 '09 at 17:09
What version of IE is this in and can you provide some code that actually shows resizing an element fires window.resize? – DEfusion Dec 8 '09 at 13:30
Not should about other versions, but it happens in IE 8 – Cocowalla Jan 22 at 18:48

9 Answers

I just discovered another problem which might help you.

I am using jQuery and I have window.resize event to call a function which will re-position the div appended to the body.

Now when I set the LEFT css property of that appended div, the window.resize event get trigger for NO GOOD REASON.

It it results in an infinite loop, triggering the window.resize again and again.

The code without fix:

$(window).resize(function(){
    onResize = function() {
        //The method which sets the LEFT css property which triggers 
        //window.resize again and it was a infinite loop
        setWrapperPosition($mainWrapper.parent());
    }
    window.clearTimeout(resizeTimeout);
    resizeTimeout = window.setTimeout(onResize, 10);
});

Solution:

var winWidth = $(window).width(),
    winHeight = $(window).height();

$(window).resize(function(){
    onResize = function() {
        //The method which sets the LEFT css property which triggers 
        //window.resize again and it was a infinite loop
        setWrapperPosition($mainWrapper.parent());
    }

    //New height and width
    var winNewWidth = $(window).width(),
    winNewHeight = $(window).height();

    // compare the new height and width with old one
    if(winWidth!=winNewWidth || winHeight!=winNewHeight)
    {
        window.clearTimeout(resizeTimeout);
        resizeTimeout = window.setTimeout(onResize, 10);
    }
    //Update the width and height
    winWidth = winNewWidth;
    winHeight = winNewHeight;
});

So basically it will check if the height or width is changed (which will happen ONLY when you actually resize with window).

share|improve this answer
Aamir, looks like that do the trick. Let me try it and I'll come back and let you know how it worked. – MissingLinq Dec 21 '09 at 20:09
Thanks for the idea to check and see if the window's width/height have changed to see if the actually window resized or not! – Bryan Denny Apr 28 '10 at 20:32
is onResize global on purpose or did you forget the var? – Jethro Larson Jun 14 '11 at 18:34
@Jethro I forgot var :P – AamirAfridi.com Aug 1 '11 at 15:57
Great solution - had the same infinite loop situation which this fix remedied. – Prembo Apr 8 at 23:32

as a jquery/javascript novice, this made sense to me and seems to work in IE7 and above:

    //variables to confirm window height and width
    var lastWindowHeight = $(window).height();
    var lastWindowWidth = $(window).width();

    $(window).resize(function() {

        //confirm window was actually resized
        if($(window).height()!=lastWindowHeight || $(window).width()!=lastWindowWidth){

            //set this windows size
            lastWindowHeight = $(window).height();
            lastWindowWidth = $(window).width();

            //call my function
            myfunction();


        }
    });
share|improve this answer

Bind your resize listener with .one() so that it unbinds itself after firing. Then you can do anything you want, so long as at the end you rebind the resize listener. I found the easiest way to do this is by putting the resize listener in an anonymous function like so:

var resizeListener = function(){
  $(window).one("resize",function(){ //unbinds itself every time it fires

    //resize things

    setTimeout("resizeListener();",100); //rebinds itself after 100ms
  });
}
resizeListener();

You don't technically need the setTimeout wrapped around the resizeListener() but I'd threw it in there as a just-in-case and for some extra throttling.

share|improve this answer
1  
Excellent solution. Remember that functions are full-fledged objects in JavaScript, so resizeListener can be passed directly to setTimeout() instead of using the string literal "resizeListener();". – user113215 Mar 14 at 20:06

I solved it by unbinding the resize function, rebuilding the page and then binding the resize function again:

function rebuild() {
   $(window).unbind('resize');
   /* do stuff here */
   $(window).bind('resize',rebuild);
}

$(window).bind('resize',rebuild);
share|improve this answer

I ran into this problem today and decided to put the following at the top of my global included javascript file:

var savedHeight = 0;
var savedWidth = 0;
Event.observe(window, 'resize', function (e) {
    if (window.innerHeight == savedHeight && 
        window.innerWidth == savedWidth) { e.stop(); }
    savedHeight = window.innerHeight;
    savedWidth = window.innerWidth;
});

That requires Prototype, by the way.

share|improve this answer

I couldn't get the resize event to fire when an element resized (only tried in IE8 though).

However what is the target on the event object when you're experiencing this issue, could you do:

$(window).resize(function(e) {
    if( e.target != window ) return;
    // your stuff here
});
share|improve this answer
2  
This doesn't work, because when an element triggers the window.resize, the target on the window.resize is always window. This is why I starting to suspect that it actually can't be done... – MissingLinq Dec 7 '09 at 16:02

A mix of the unbind / bind method with a delayed call. It works in Internet Explorer 8 and below, preventing evil loop and hangs on versions 6 and 7.

function resizeViewport()
{
    // Unbind and rebind only for IE < 9
    var isOldIE = document.all && !document.getElementsByClassName;

    if( isOldIE )
        $(window).unbind( 'resize', resizeViewport );

    // ...

    if( isOldIE )
    {
        setTimeout(function(){
            $(window).resize( resizeViewport );
        }, 100);
    }
}

$(window).resize( resizeViewport );
share|improve this answer

My patch:

<!--[if lte IE 7]>
<script type="text/javascript">
  window.onresize = null;       // patch to prevent infinite loop in IE6 and IE7
</script>
<![endif]-->
share|improve this answer
I would never recommend to mess with windows objects like this way. – AamirAfridi.com Aug 1 '11 at 15:58
$(window).resize(function(event)
{
    if (typeof event.target.tagName == 'undefined')
    {
        // ...
    }
});
share|improve this answer
this didnt work – mkoryak Sep 17 '12 at 19:16
What about this answer adds/improves the other highly rated answers? A code-only answer is not good. Provide explanation. – cale_b Oct 26 '12 at 14:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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