Posts Tagged jQuery
Comprobar si un checkbox esta seleccionado con jQuery
Posted by oscar arzola in Javascript on January 19th, 2009
Para comprobar si un checkbox esta seleccionado basta crear un selector de jQuery y verificar si su valor esta en “on”
$("#idcheckbox").bind("change",function(){ if($(this).val()=="on"){ alert("Seleccionado"); } });
Recent Comments