Answers for "add event to all checkbox jquery"

-1

checkbox on click jquery select all

$("#checkAll").click(function(){
    $('input:checkbox').not(this).prop('checked', this.checked);
});
Posted by: Guest on October-03-2020

Code answers related to "add event to all checkbox jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language