Skip to content

Instantly share code, notes, and snippets.

@erming
Last active August 29, 2015 14:00
Show Gist options
  • Save erming/11212325 to your computer and use it in GitHub Desktop.
Save erming/11212325 to your computer and use it in GitHub Desktop.
jquery.uniqueClass.js
/*!
* uniqueClass
* https://gist.github.com/erming/11212325
*/
(function($) {
$.fn.uniqueClass = function(name) {
return this.addClass(name).siblings().removeClass(name).end();
};
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment