Ver Mensaje Individual
  #11 (permalink)  
Antiguo 21/11/2003, 16:01
root_root
 
Fecha de Ingreso: marzo-2002
Mensajes: 12
Antigüedad: 22 años, 9 meses
Puntos: 0
Código:
<script language="Javascript">
<!--
function existe(valor)
{
	var vexiste=false;

	for(i=0; i<=valor.length; i++)
	 {
	 	if((valor.charAt(i) !="") && (valor.charAt(i) !=" "))
		{
			vexiste= true;
			break;
		}
		
	 } 
	 
	 return vexiste; 
}</script>
Código HTML:
<form name="formulario">
<table>
<tr>
    <td><input type="text" name="nombre" size="25" onBlur="if (!existe(document.formulario.nombre.value)){alert('Escriba su nombre');}">
	</td>
</table>
</form>