Showing posts with label check all checkboxes with in a form. Show all posts
Showing posts with label check all checkboxes with in a form. Show all posts

21 March 2012

check all checkboxes in a form

$(document).ready(function() {
            $('#chkAll').click(
             function() {
                 $("INPUT[type='checkbox']").attr('checked', $('#chkAll').is(':checked'));
             });
         });