Skip to content

Instantly share code, notes, and snippets.

@stiig
Created March 25, 2025 12:35
Show Gist options
  • Save stiig/aba27b107ed646a687f8aecc2ce606a1 to your computer and use it in GitHub Desktop.
Save stiig/aba27b107ed646a687f8aecc2ce606a1 to your computer and use it in GitHub Desktop.
Solution for making checkboxes behave like radio buttons
$('.checkbox_like_radio').on('click', 'input[type="checkbox"]', function() {
$(this)
.closest('.checkbox_like_radio')
.find('input[type="checkbox"]')
.not(this)
.prop('checked', false);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment