Skip to content

Instantly share code, notes, and snippets.

@shaneriley
Created May 9, 2011 18:13
Show Gist options
  • Save shaneriley/963024 to your computer and use it in GitHub Desktop.
Save shaneriley/963024 to your computer and use it in GitHub Desktop.
jQuery Toggle Attribute Plugin
$.fn.toggleAttr = function(attr) {
return this.each(function() {
var $e = $(this);
$e.attr(attr, !!!$e.attr(attr));
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment