Skip to content

Instantly share code, notes, and snippets.

@philipmadeley
Last active September 16, 2015 02:00
Show Gist options
  • Save philipmadeley/5869468468521d3c92dc to your computer and use it in GitHub Desktop.
Save philipmadeley/5869468468521d3c92dc to your computer and use it in GitHub Desktop.
disable other checkboxes
$(':checkbox').click(function(){
var elems = $(this).parents('tbody').find(':checkbox');
elems.not($(this)).attr('disabled', $(this).is(':checked'));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment