terça-feira, 27 de julho de 2010

Crítica para campo radio e checkbox

function isCheckboxMarcado(checkbox){
if(checkbox.length){
for(var i=0; i if(checkbox[i].checked)return true;
}
}else if(checkbox.checked){
return true;
}
return false;
}
function isRadioMarcado(radio){
return isCheckboxMarcado(radio);
}

Nenhum comentário:

Postar um comentário