if it can be in jquery or ajax the help would be appreciated the idea is that the user when you click on that checkbox can not distil it
if it can be in jquery or ajax the help would be appreciated the idea is that the user when you click on that checkbox can not distil it
you could do it like that
$(document).ready(function(){
//verificamos si el input checkbox esta seleccionado
if( $('.micheckbox').is(':checked') ) {
$(this).attr("disabled",true);//si es asi lo desactivamos
}
} })