Pages

Subscribe:

Ads 468x60px

Wednesday, March 14, 2012

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'));
});

No comments:

Post a Comment