- Back to Home »
- Jquery CheckBox
Posted by :
Kadir ARLI
31 Mart 2013 Pazar
Jquery ile checkboxlarınız seçili iken bir action yakalamak için;
$("#anonsForm_tam").attr("checked","checked").change();
Jquery ile checkboxlarınızı seçili durumdan çıkar iken action yakalamak için;
$("#anonsForm_tam").removeAttr("checked","checked").change();Action :
$("input.tam").live("change",function () {
if ($(this).is(":checked")){
$(this).parent("td").parent("tr").find("input").attr("checked","checked");
$(".disabled").removeAttr("checked");
}
else{
$(this).parent("td").parent("tr").find("input").removeAttr("checked");
}
});
Vesselam.
Yorum Gönder