meetselva / attrchange

onattrchange listener
GNU General Public License v3.0
207 stars 57 forks source link

Not working for body style tag #16

Closed shadysamir closed 9 years ago

shadysamir commented 9 years ago

I am using the plugin to monitor my body tag if it gets a style="margin-top: 20px" attribute added to it. My code is as follows:

$('body').attrchange({
    trackValues: false, callback: function(e) {
    setHeroSize();
  }
});

It's never called even though the style attribute gets changed

shadysamir commented 9 years ago

Somehow it just worked now!