SO - 18537609

by Ufuk Ozdemir

HTML

<label><input type="checkbox" id="checkAll">Tümünü Seç</label><br>
<label><input type="checkbox" name="checkItem"> Item 1</label>
<label><input type="checkbox" name="checkItem"> Item 2</label>
<label><input type="checkbox" name="checkItem"> Item 3</label>

JavaScript

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