Skip to content

Instantly share code, notes, and snippets.

@skymaiden
Created July 21, 2014 09:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save skymaiden/e3c1fa593ff44bfe1e8d to your computer and use it in GitHub Desktop.
Save skymaiden/e3c1fa593ff44bfe1e8d to your computer and use it in GitHub Desktop.
Remove class by regex
var removeClassRegex = function($element, regex) {
return $element.attr('class', function(i, c) {
return c.replace(regex, '');
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment