Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save uzbekdev1/7c7c6edf85a2659677efbcb437b98a02 to your computer and use it in GitHub Desktop.
Save uzbekdev1/7c7c6edf85a2659677efbcb437b98a02 to your computer and use it in GitHub Desktop.
How to Allow Only One Checkbox to be Checked using jQuery
$('input:checkbox').off().on('click', function () {
$('input:checkbox').not(this).prop('checked', false);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment