Posted in

Check and uncheck checkboxes con jquery


$(document).ready( function(){
$("#marcatots").click(function(event){
if($(this).is(":checked")) {
$(".modificar:checkbox:not(:checked)").attr("checked", "checked");
}else{
$(".modificar:checkbox:checked").removeAttr("checked");
}
});
});

Deixa un comentari

L'adreça electrònica no es publicarà. Els camps necessaris estan marcats amb *


The reCAPTCHA verification period has expired. Please reload the page.