Ver Mensaje Individual
  #2 (permalink)  
Antiguo 29/10/2005, 09:08
Avatar de jc_moty
jc_moty
 
Fecha de Ingreso: septiembre-2005
Ubicación: Usulután, El Salvador
Mensajes: 477
Antigüedad: 18 años, 7 meses
Puntos: 1
De acuerdo

Eso se hace con JavaScript:
Código:
<html>
<head>
<script>
function enfocar()
{
cnombre.focus();
}
</script>
<title>SetFocus al Cargar</title>
</head>
<body onLoad = "enfocar()">
Nombre: <input type = "text" name="cnombre" size="20">
</body>
</html>
Saludos