Ver Mensaje Individual
  #5 (permalink)  
Antiguo 21/11/2003, 15:09
Avatar de Kaopectate
Kaopectate
Colaborador
 
Fecha de Ingreso: diciembre-2001
Ubicación: Curaçao (Antillas Holandesas)
Mensajes: 3.179
Antigüedad: 23 años
Puntos: 38
Una idea...quita los saltos de linea a ver si te funciona.

Asi no:

Código PHP:
<input type="text" name="nombre" size="25" 
onBlur="if (!existe(this.value))
{
alert('Escriba su nombre');
}"

Asi:

Código PHP:
<input type="text" name="nombre" size="25" onBlur="if (!existe(this.value)){alert('Escriba su nombre');}"
Prueba a ver...