Last active
September 16, 2015 02:00
-
-
Save philipmadeley/5869468468521d3c92dc to your computer and use it in GitHub Desktop.
disable other checkboxes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(':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