Skip to content

Instantly share code, notes, and snippets.

@abhishek-9ithub
Created November 25, 2017 09:17
Show Gist options
  • Save abhishek-9ithub/183632f90ee6a4023463f1bda2cb8fd2 to your computer and use it in GitHub Desktop.
Save abhishek-9ithub/183632f90ee6a4023463f1bda2cb8fd2 to your computer and use it in GitHub Desktop.
checkbox check one at a time
$(function(){
$(':checkbox').on('change',function(){
var th = $(this), name = th.prop('name');
if(th.is(':checked')){
$(':checkbox[name="' + name + '"]').not($(this)).prop('checked',false);
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment