Skip to content

Instantly share code, notes, and snippets.

@scalvert
Created May 7, 2014 23:34
Show Gist options
  • Save scalvert/6a825e56ea0ca018f849 to your computer and use it in GitHub Desktop.
Save scalvert/6a825e56ea0ca018f849 to your computer and use it in GitHub Desktop.
removeStyle
(function($) {
$.extend($.fn, {
removeStyle: function() {
this.each(function() {
return $(this).removeAttr('style');
});
}
});
})(Mobify.$);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment