|
|
|
jquery |
Checkbox Controller | | function checkall(context, controller){
$("#"+context).find("input[@type$='checkbox']").not(controller).each(function(){
// verify the state of checkbox controller and pass the state to others checkboxes
this.checked = $(controller).checked;
});
} |
Böyyük Patron Tarafından 29-06-2010 Tarihinde Gönderilmiştir.
Bu Konuyu Yazdır Kaynak : |
|
|
|