Ver Mensaje Individual
  #2 (permalink)  
Antiguo 03/02/2005, 23:59
Appletalk
 
Fecha de Ingreso: febrero-2004
Mensajes: 221
Antigüedad: 20 años, 3 meses
Puntos: 0
No te entendi, por como te expresas me parece que no sos ingeniero recibido o si? -chiste :P-

Si quieres que pase por "TEXT,RADIO BUTTON, SELECT BUTTOM Y OPTION BUTTOM" y no por "submit":

Código HTML:
<script language="JavaScript" type="text/javascript">
for (i = 0; (inp = document.getElementsByTagName('input').item(i) ); i++ ) {
    type = inp.getAttribute('type');
    if(type == 'text' || type == 'radio' || type == 'checkbox' ) { inp.focus(); }
}
</script> 
Obviamente podrias almacenar los tipos que quieras en un array para incrementar la reusabilidad. Ademas, deberias echarle un vistazo al atributo tabindex, por si las dudas.