Skip to content

Instantly share code, notes, and snippets.

@ryngonzalez
Created June 12, 2013 22:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryngonzalez/5769578 to your computer and use it in GitHub Desktop.
Save ryngonzalez/5769578 to your computer and use it in GitHub Desktop.
Toggle your data-attributes, yo.
(function(jQuery){
$.fn.toggleData = function(dataAttr, onState, offState) {
this.attr(dataAttr, this.attr(dataAttr) === onState ? offState : onState)
};
})($);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment