The CSS3 resize property can be assigned to arbitrary elements. I\'m looking for a way to detect such a resize on, say, divs (I don\'t mind it only working in Firefox at the
Resizing is like a style change. As such it can be observed with a MutationObserver.
let observer = new MutationObserver(function(mutations) { console.log('mutations:', mutations); }); let child = document.querySelector('textarea'); observer.observe(child, { attributes: true });