Internet Explorer OnResize 
September 2nd, 2005
I recently came across a very strange behaviour in Internet Explorer - shock, horror!
It is related to the OnResize event. In Internet Explorer the onresize event will fire on any node for which the event is defined. Take, for example, the following HTML snippit:
If you have this in a web page and resize the window, in Internet Explorer 6 you will first see the alert from the body and then it will start at the deepest part of the hierarchy (ie the div child node) and fire all resize events until it reache the top of the node tree at which point it will again fire the event on the body tag! There are also situations where if you resize an element through JavaScript this will cause the body resize event to fire - but only once rather than twice as it does when you manually resize the window.
When run in Firefox, Opera or Netscape my sample code only fires the body onresize event once and does not fire the onresize events on elements contained in the body element.
So be careful when building AJaX components that take advantage of the onresize event.
Del.icio.us
This entry was posted on Friday, September 2nd, 2005 at 11:19 am and is filed under AJAX, JavaScript. You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.

January 15th, 2008 at 5:24 am
I came here searching about that after hitting the same problem.
IE simply sucks