mesut33 adlı üyeden alıntı

Tşk ederim bu şekilde çalıştı ama benim select all buton input değil,
inputa çalışıyor ama butona yaptığımda çalışmıyor.

bu şekilde çalışmıyor





$('#select-all').change(function(event) {
if(this.checked) {
$(':checkbox').each(function() {
this.checked = true;
});
} else {
$(':checkbox').each(function() {
this.checked = false;
});
}
});


Bu şekilde çalıştırabilirsiniz.

Html:








Js:

var isaret=0;
$("#mahmutabi").click(function(){
if(isaret ==0) {
isaret=1;
$(':checkbox').each(function() {
this.checked = true;
});
} else {
isaret=0;
$(':checkbox').each(function() {
this.checked = false;
});
}
});