Hola a todos.
Otra opción podría ser tener el
submit deshabilitado y habilitarlo cuando todos los campos estén rellenos:
Código PHP:
<html>
<head>
<script type="text/javascript">
function validar(frm) {
var hab = false;
for (i=0; ele=frm.elements[i]; i++)
if (ele.value=='') {
hab = true;
break;
}
frm.enviar.disabled = hab;
}
</script>
</head>
<body>
<form onkeyup="validar(this)">
<input type="text" />
<input type="text" />
<input type="text" />
<input type="submit" name="enviar" value="Enviar" disabled="disabled" />
</form>
</body>
</html>
Saludos,