Skip to content

Instantly share code, notes, and snippets.

@MiguelQueiroz
Created June 27, 2014 10:19
Show Gist options
  • Save MiguelQueiroz/2cbe2e66252bca5607a8 to your computer and use it in GitHub Desktop.
Save MiguelQueiroz/2cbe2e66252bca5607a8 to your computer and use it in GitHub Desktop.
Toogle Attribute switcher for Jquery
function toggleAttr(what,attr,on_v,off_v){
what.attr(attr)==on_v?what.attr(attr,off_v):what.attr(attr,on_v);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment