Onresize for div elements?

Microsoft’s Internet Explorer supports onresize on all HTML elements.
In all other Browsers the onresize is only available at the window object.
https://developer.mozilla.org/en-US/docs/Web/API/Window.onresize

If you wanna have onresize at a div in all browsers check this:

http://marcj.github.io/css-element-queries/

This library has a class ResizeSensor which can be used for resize detection.

Leave a Comment