Skip to content

Instantly share code, notes, and snippets.

@ichadhr
Created June 5, 2015 09:56
Show Gist options
  • Save ichadhr/515910bd06d54f7b6efd to your computer and use it in GitHub Desktop.
Save ichadhr/515910bd06d54f7b6efd to your computer and use it in GitHub Desktop.
Toggle Attribute jQuery
$.fn.toggleAttr = function(a, b) {
var c = (b === undefined);
return this.each(function() {
if((c && !$(this).is("["+a+"]")) || (!c && b)) $(this).attr(a,a);
else $(this).removeAttr(a);
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment