Skip to content

Instantly share code, notes, and snippets.

@lukelex
Created December 24, 2012 18:59
Show Gist options
  • Select an option

  • Save lukelex/4370359 to your computer and use it in GitHub Desktop.

Select an option

Save lukelex/4370359 to your computer and use it in GitHub Desktop.
Toggle an attribute
$('input:checkbox').attr('checked', function(idx, oldAttr) {
return !oldAttr;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment