Samuz Posted August 7, 2012 Share Posted August 7, 2012 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? Quote Link to comment https://forums.phpfreaks.com/topic/266753-resize/ Share on other sites More sharing options...
Mahngiel Posted August 7, 2012 Share Posted August 7, 2012 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: SO provided this plugin, however: http://benalman.com/projects/jquery-resize-plugin/ Quote Link to comment https://forums.phpfreaks.com/topic/266753-resize/#findComment-1367482 Share on other sites More sharing options...
Samuz Posted August 7, 2012 Author Share Posted August 7, 2012 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.. Quote Link to comment https://forums.phpfreaks.com/topic/266753-resize/#findComment-1367483 Share on other sites More sharing options...
Samuz Posted August 7, 2012 Author Share Posted August 7, 2012 actually ignore this thread, found a plugin. for anyone else that may come across with the same problem the url's found here: http://benalman.com/projects/jquery-resize-plugin/ Quote Link to comment https://forums.phpfreaks.com/topic/266753-resize/#findComment-1367484 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.