Answers for "select all checkbox using 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
0

find all checkbox inside div jquery

$('#selectChb').click(function(){ 
     $(':checkbox').prop("checked", true);
});
Posted by: Guest on February-21-2021

Code answers related to "select all checkbox using jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language