I'm trying to trigger something if an element changes to fix the fixed width and height of that element.
For that I found DOMSubtreeModified
.
Now I'm trying to bind it: $(document).on("DOMSubtreeModified", "#content", resizer);
That works with Chrome or Firefox. But in IE11 it triggers the whole time. Is there another way to bind the DOMSubtreeModified
event to an "later existing" element?