Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lucasdavila/2311246 to your computer and use it in GitHub Desktop.
Save lucasdavila/2311246 to your computer and use it in GitHub Desktop.
Uncheck all checkboxes except this one
// jquery
var $checkboxes = $("input[type='checkbox']");
$checkboxes.change(function(){
$checkboxes.not(this).removeAttr('checked');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment