Skip to content

Instantly share code, notes, and snippets.

@ginotria
Created November 9, 2012 13:38
Show Gist options
  • Save ginotria/4045702 to your computer and use it in GitHub Desktop.
Save ginotria/4045702 to your computer and use it in GitHub Desktop.
jQuery: Inline Style Remover
$.fn.removeStyle = function(style)
{
var search = new RegExp(style + '[^;]+;?', 'g');
return this.each(function()
{
$(this).attr('style', function(i, style)
{
return style.replace(search, '');
});
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment