checkbox

by rajaadil

HTML

<input type="checkbox" id="checkAll" > Check All
    <hr />
    <input type="checkbox" class="checkItem"> Item 1
    <input type="checkbox" class="checkItem"> Item 2 
    <input type="checkbox" class="checkItem"> Item3

JavaScript

$('#checkAll').click(function () {    
    $(':checkbox.checkItem').prop('checked', this.checked);    
 });