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.

I have a little problem with window resizing using jQuery's function .resize(). I would like to know which side is getting bigger/smaller - width or height. I need this because if I just put two conditions - if width is for 50px bigger than div and if height is for 50px bigger than div, then is working just one condition and I can resize only width or height.

How could I know which side is getting bigger/smaller or if are both?

share|improve this question
1  
Why don't you post your code that you have tried.? – Sheikh Heera Sep 30 '12 at 12:07

closed as too localized by undefined, Sergey K., ЯegDwight, Florent, Graviton Oct 2 '12 at 2:35

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

2 Answers

up vote 1 down vote accepted

By saving last window size values in variables.

var h = $(window).height(), w = $(window).width();
$(window).resize(function(){

    var nh = $(window).height(), nw = $(window).width();
     // compare the corresponding variables.
    h = nh; w = nw; // update h and w;
});
share|improve this answer

Save the previous size and compare with it, everytime the size changes.

For ex:

var prevW = -1, prevH = -1;

$(document).ready(function() {

    // ... other stuff you might have inside .ready()

    prevW = $(window).width();
    prevH = $(window).height();
});

$(window).resize(function() {
    var widthChanged = false, heightChanged = false;
    if($(window).width() != prevW) {
        widthChanged  = true;
    }
    if($(window).height() != prevH) {
        heightChanged = true;
    }

    // your stuff

    prevW = $(window).width();
    prevH = $(window).height();

});

Demo: http://jsfiddle.net/44aNW/

share|improve this answer
You need to save the previous width/height after the = true for it to work more than once. – vyx.ca Sep 30 '12 at 12:19
Ahh, thats correct. Fixed now. – techfoobar Sep 30 '12 at 12:25
This doesn't work fully. It works just for second if condition and not for both. – user1257255 Sep 30 '12 at 18:18
It is working correctly. Check this demo: jsfiddle.net/44aNW – techfoobar Oct 1 '12 at 2:24

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