Skip to content

Instantly share code, notes, and snippets.

@instcode
Created September 14, 2012 08:27
Show Gist options
  • Save instcode/3720752 to your computer and use it in GitHub Desktop.
Save instcode/3720752 to your computer and use it in GitHub Desktop.
Find out who changes "style" attribute (i.e. 'height') of an element
var div = document.getElementById("id");
function domEventListener(e) {
var caller = domEventListener.caller;
if (e.attrName == 'style' && e.newValue.indexOf('height') >= 0) {
alert(caller);
}
};
div.addEventListener('DOMAttrModified', domEventListener);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment