Ver Mensaje Individual
  #2 (permalink)  
Antiguo 19/11/2004, 11:43
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 10 meses
Puntos: 772
Hola mickeyy.

Aquí te dejo un poco de código:
Código HTML:
<html>
<head>
<script type="text/javascript">
function validar(obj) {
	if(obj.nombre.value!='2') {
  	obj.nombre.style.color='red';
    return false;
  }
}
</script>
</head>
<body>
<form name="formu" onsubmit="return validar(this)">
<input type="text" name="nombre" />
<input type="submit" />
</form>
</body>
</html> 
Saludos,