Skip to content

Instantly share code, notes, and snippets.

@kozo002
Created November 5, 2011 09:31
Show Gist options
  • Select an option

  • Save kozo002/1341313 to your computer and use it in GitHub Desktop.

Select an option

Save kozo002/1341313 to your computer and use it in GitHub Desktop.
jQuery extend function "switchClass"
(function() {
$.fn.extend({
switchClass: function(from, to) {
this.removeClass(from).addClass(to);
}
});
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment