Created
June 12, 2013 22:10
-
-
Save ryngonzalez/5769578 to your computer and use it in GitHub Desktop.
Toggle your data-attributes, yo.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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