Skip to content

Instantly share code, notes, and snippets.

@appden
Created August 31, 2009 22:43
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 appden/178762 to your computer and use it in GitHub Desktop.
Save appden/178762 to your computer and use it in GitHub Desktop.
// set the class of a jQuery collection
jQuery.fn.setClass = function(className){
return this.each(function(){
this.className = className || '';
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment