Created
March 18, 2014 08:20
-
-
Save abrjagad/9615696 to your computer and use it in GitHub Desktop.
allow only one check box checked in group
This file contains 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
$(".accord_table").on("change",'.currentTable :checkbox',function(event){ | |
var group = $(this).closest(".currentTable").find(":checkbox"); | |
group.not($(this)).removeProp("checked"); | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment