Ver Mensaje Individual
  #2 (permalink)  
Antiguo 17/09/2004, 14:50
Avatar de Saruman
Saruman
 
Fecha de Ingreso: mayo-2003
Ubicación: Panama city, Panama, Panama
Mensajes: 1.154
Antigüedad: 21 años, 8 meses
Puntos: 5
si existe.
en el body colocas esto:

Código HTML:
<body onload="document.all.txttitulo.focus();"> 
si estas trabajando con un form:

Código HTML:
<body onload="document.nombre_form.txttitulo.focus();"> 
o al final del codigo:

Código HTML:
<script language="javascript">
    document.form1.txttitulo.focus();
</script> 
__________________
Saruman

One Ring to rule them all, One Ring to find them, One Ring to bring them all and in the darkness bind them.

Última edición por Saruman; 17/09/2004 a las 14:52