checkbox
HTML
<input type="checkbox" id="checkAll" > Check All
<hr />
<input type="checkbox" id="checkItem"> Item 1
<input type="checkbox" id="checkItem"> Item 2
<input type="checkbox" id="checkItem"> Item3
JavaScript
$('#checkAll').click(function(){
$('input:checkbox').prop('checked','checked');
if ($('input:checkbox').is(':checked')) {
$('input:checkbox').prop('checked',false);
}
});