vote up 2 vote down star
$("#dvMyDIV").bind("resize", function(){
        alert("Resized");
    });

or

$("#dvMyDIV").resize(function(){
    alert("Resized");
});

The questions

  1. Why is this not working at FireFox, Chrome and Safari?
  2. Can this be considered a jQuery bug since the resize is not handled for other browsers?
  3. Could the only workaround be calling a SetTimeout function checking the clientHeight and clientWidth?
  4. Any workarounds using jQuery?
flag

8 Answers

vote up 4 vote down check

I believe the JavaScript resize event only applies to frames or windows, not to DIVs.

e.g. see this page:

The onResize even handler is use to execute specified code whenever a user or script resizes a window or frame. This allows you to query the size and position of window elements, dynamically reset SRC properties etc.

So if you want to detect when the window is resized, in jQuery you should probably use $(window).resize(function() { });

Edit: if you want to watch the size of a DIV, it depends on what your intention is. If you're resizing with JavaScript then you could implement a method to perform the resize and have that handle calling any other resize code.

Otherwise, if you're just watching for the DIV to resize when someone resizes the window, wouldn't it just work to attach the resize listener to the window and then check if the DIV had been resized (i.e. store the old values of width / height and check them on resize)?

Finally, you could consider using watch on the width / height properties, although I don't know whether this is fully browser-compatible (think this might be Mozilla-only). I did find this jQuery plugin which looks like it might do the same thing though (with some slight modification).

link|flag
vote up 1 vote down

Are you trying to set myDiv to a specific size?

Try the JavaScript code below. I used it for resizing a div which holds a flash object based upon a height being returned from the flash file and it seemed to work okay for me.

function setMovieHeight(value) {
    var height = Number(value) + 50;
document.getElementById("video").height = height;
}

the jQuery equivilent should be:

function setHeight(value) {
   var height =  number(value) + 50;
   $('#MyDiv').attr('height') = height;
}

resize does only seem to apply to the windows object.

link|flag
vote up 0 vote down

Yeah Phill. That i know. The thing is that i want to call the function on resize of the DIV. Its working in IE7 and not in Mozilla (wonder of wonders) I want a resize event for DIV (A HTML element)

link|flag
I've updated my answer following this :) – Phill Sacre Oct 23 '08 at 9:14
Naveen, please use comments and not full answers to respond. Same goes for the other 2 answers you posted for the question. Just trying to help! – Aardvark May 5 at 14:06
@Aardvark Thanks for pointing out. I am used to forums, so I followed that style without checking. In future I will do so – naveen Oct 17 at 5:50
vote up 0 vote down

Why do you expect #dvMyDIV to be resized? Is maybe resizing of that element a result of something else, maybe the window being resized? If so, try

$(window).resize(function(){alert("Resized");});
link|flag
vote up 0 vote down

But cant do that here. Its a small div thats resized. its not changing the window size at all

link|flag
vote up 0 vote down

I might suggest something like this:

1) on page load, get width of your div and put it in a global variable

2) on execution of whatever operation directly or implicitly resizes that div (which I assume is a javascript-driven event) check the new width against the old width and update the global value with the new width.

link|flag
vote up 0 vote down

hi Phill Sacre,

If you're resizing with JavaScript then you could implement a method to perform the resize and have that handle calling any other resize code.

Exactly what i needed to do. Doh, what was i thinking? Thanks a lot!

link|flag
vote up 0 vote down

Phill Sacre, divs are resizeble http://jqueryui.com/demos/resizable/#snap-to-grid

link|flag
I dont think that @Phill meant that divs are not resizable. He said that when divs are resized, the resize event is not triggered. Moreover, if you are commenting to an answers, please dont add the comment as an answer. :) – Shree Nov 26 at 9:55

Your Answer

Get an OpenID
or

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