vote up 0 vote down star
2

I've got a div that contains some content that's being added and removed dynamically, so its height is changing often. I also have a div that is absolutely positioned directly underneath with javascript, so unless I can detect when the height of the div changes, I can't reposition the div below it.

So, how can I detect when the height of that div changes? I assume there's some jQuery event I need to use, but I'm not sure which one to hook into.

Thanks.

flag

3 Answers

vote up 2 vote down check

Haven't tested this but I think this will work:

$("#myDiv").bind("resize", function(){ 
                                       alert( $("#myDiv").height() ); 
                                     } 
                );

However, if you are changing the content of your DIV (#myDiv in the above example) dynamically, then I think it would be better to just modify that code to recalculate the height of the DIV ($("#myDiv").height()) after it changes the content of the DIV and then reposition the underlying DIV and not bother setting an event handler.

link|flag
Doh, repositioning the div whenever I make changes to the content makes a lot sense. Thanks! – Bob Somers Oct 6 '08 at 0:02
1  
bind('resize') only works on the window – DEfusion Oct 10 at 15:34
vote up 1 vote down

Just a note for people that might actually want to use the resize function.

I was trying to detect resize on a div as well but apparently the resize binding is only for windows and frames: http://stackoverflow.com/questions/229010/jquery-resize-not-working-at-firefox-chrome-and-safari

link|flag
vote up 0 vote down

You can use the DOMSubtreeModified event

$(something).bind('DOMSubtreeModified' ...

But this will fire even if the dimensions don't change, and reassigning the position whenever it fires can take a performance hit. In my experience using this method, checking whether the dimensions have changed is less expensive and so you might consider combining the two.

Or if you are directly altering the div (rather than the div being altered by user input in unpredictable ways, like if it is contentEditable), you can simply fire a custom event whenever you do so.

Downside: IE and Opera don't implement this event.

link|flag
IE & Opera don't implement this event: quirksmode.org/dom/events/index.html – DEfusion Oct 10 at 15:10
True. Note added. – eyelidlessness Oct 10 at 21:41

Your Answer

Get an OpenID
or

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