<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
<script>
$("#checkAll").click(function(){
$('input:checkbox').not(this).prop('checked', this.checked);
});
</script>
<hr />
<input type="checkbox" id="checkItem"> Item 1
<input type="checkbox" id="checkItem"> Item 2
<input type="checkbox" id="checkItem"> Item3
<script>
$("#checkAll").click(function(){
$('input:checkbox').not(this).prop('checked', this.checked);
});
</script>
0 Comments