Skip to content

Instantly share code, notes, and snippets.

@netsuite
Created September 12, 2013 18:58
Show Gist options
  • Save netsuite/6542267 to your computer and use it in GitHub Desktop.
Save netsuite/6542267 to your computer and use it in GitHub Desktop.
jquery: toggle attr
jQuery.fn.toggleAttr = function(a, b) {
var c = (b === undefined);
return this.each(function() {
if((c && !jQuery(this).is("["+a+"]")) || (!c && b)) jQuery(this).attr(a,a);
else jQuery(this).removeAttr(a);
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment