What is the correct (modern) method for tapping into the window resize event that works in Firefox, WebKit, and Internet Explorer?
And can you turn both scrollbars on/off?
|
What is the correct (modern) method for tapping into the window resize event that works in Firefox, WebKit, and Internet Explorer? And can you turn both scrollbars on/off? |
|||||||
|
|
jQuery has a built-in method for this:
For the sake of UI responsiveness, you might consider using a setTimeout to call your code only after some number of milliseconds, as shown in the following example, inspired by this:
|
|||||||||||||||||
|
|
|||||||||
|
|
Sorry to bring up an old thread, but if someone doesn't want to use jQuery you can use this:
|
||||
|
|
|
Since you are open to jQuery, this plugin seems to do the trick. |
|||
|
|
|
I consider the jQuery plugin "jQuery resize event" to be the best solution for this as it takes care of throttling the event so that it works the same across all browsers. It's similar to Andrews answer but better since you can hook the resize event to specific elements/selectors as well as the entire window. It opens up new possibilities to write clean code. The plugin is available here There are performance issues if you add a lot of listeners, but for most usage cases it's perfect. |
||||
|
|
|
I think you should add further control to this:
|
|||
|
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.