Código PHP:
Ver original
} elseif (_calle.value.length == 0){
Y el cod es:
Código PHP:
Ver original
function direccion(){ var _SINTOMA = document.forms['form1'].elements['SINTOMA']; var _calle = document.forms['form1'].elements['calle']; if (_SINTOMA.value.length == 0){ alert("¡Insertar el síntoma de la avería!"); _SINTOMA.focus(); return 0; } elseif (_calle.value.length == 0){ alert("¡Insertar la dirección del usuario!"); _calle.focus(); return 0; }else { document.forms['form1'].submit(); }
Gracias.