Answers for "jquery check one box at a time"

1

check one checkbox at a time jquery

$(document).on('click', 'input[type="checkbox"]', function() {      
    $('input[type="checkbox"]').not(this).prop('checked', false);      
});
Posted by: Guest on October-12-2021

Code answers related to "jquery check one box at a time"

Code answers related to "Javascript"

Browse Popular Code Answers by Language