Skip to content

Instantly share code, notes, and snippets.

@kikegarcia
Last active December 20, 2015 08:59
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 kikegarcia/6104607 to your computer and use it in GitHub Desktop.
Save kikegarcia/6104607 to your computer and use it in GitHub Desktop.
Jquery uncheck checkboxes siblings on check
$(':checkbox').change(function(){
if (this.checked) {
$(this).siblings(':checkbox').attr('checked',false);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment