hola foro, q tal habia validado mi formulario pero sin que parezca las ventanitas de alert,si no que me marcara en el mismo formulario, pero al validar el mensaje de error que aparece en el formulario solo aparece por unos instantes y despues se quita, nose si alguien me pueda ayudar con esto,este es el código
Código PHP:
<script language="JavaScript">
function valida(){
if(document.getElementById("nombre").value=='')
{ document.getElementById("nombre2").style.visibility='visible'; return false; }
else{ document.getElementById("nombre2").style.visibility='hidden'; }
}
</script>
</head>
<body>
<form name="form1" method="post" action="">
<table width="75%" border="0">
<tr><td>Nombre():</td><td><input type="text" id="nombre" onBlur="valida();">
</td></tr>
<tr><td></td>
<td id="nombre2" style="visibility:hidden">Campo Nombre Obligatorio.</td> </tr>
<tr><td>Apellidos:</td><td><input type="text" name="textfield2"></td></tr>
<tr><td></td><td></td></tr>
</table> <input type="submit" name="valida " value="Valida" onClick="valida();"> </form>
</body>
</html>