Jump to content

resize()


Samuz

Recommended Posts

So basically I have certain elements that are positioned based on the size of their window and i'd use the resize handler to reposition those elements if the window size is changed.

 

But what do I do if I want to bind the 'resize' handler to an element?

 

this wouldn't work

 

$('html').resize(function() {
// code
});

 

I guess what I want to test is when the height of a specific element has changed?

Link to comment
https://forums.phpfreaks.com/topic/266753-resize/
Share on other sites

I guess what I want to test is when the height of a specific element has changed?

 

The resize event is sent to the window element when the size of the browser window changes:

Maybe I didn't explain properly.

 

But I essentially need a method to determine when the height of an element has changed..

Link to comment
https://forums.phpfreaks.com/topic/266753-resize/#findComment-1367483
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.