how to check all check boxes using jquery

In this web programming tutorial we will learn that how we can check all check boxes in a page using jquery.

Reason for Celebrity Famous on the internet
Committed a crime
Dates a super model
Hosts a TV show
Big in Japan

Check all
Jquery Code to check all check boxes
$('.check-all:checkbox').change(function() {
var group = ':checkbox[name=' + $(this).attr('name') + ']';
$(group).attr('checked', $(this).attr('checked'));
});

Admin

A Software Engineer, Social Media Marketing Expert, writer,

Post a Comment

Previous Post Next Post