Ciao
Ho questo form con relativi campi:
<html>
<head>
<title>Form dati</title>
</head>
<body bgcolor="#DAB88B">
<TABLE border=0 width=100% cellpadding=3>
<tr>
<td width=100% colspan=2>
<p align=center>Inserisci Articoli
<form method=POST action="fatt1.php">
</td>
</tr>
<tr>
<td width=18%>Codice</td>
<td width=82%><input type=text name=codice size=10></td>
</tr>
<tr>
<td width=18%>Descrizione</td>
<td width=72%><textarea name=descrizione cols="23"></textarea></td>
</tr>
<tr>
<td width=18%>Quantità</td>
<td width=82%><input type=text name=colli size=10></td>
</tr>
<tr>
<td width=18%>[b]Quantità</td>
<td width=82%><input type=text name=quantita size=10></td>
</tr>
<tr>
<td width=18%>[b]Prezzo Un.</td>
<td width=82%><input type=text name=prezzo size=10></td>
</tr>
<tr>
<td width=18%><input type=submit value=Inserisci nuovi dati></td>
<td width=82%></form></td>
</tr>
</table>
</body></html>
Volevo sapere se era possibile fare in modo che il cursore si posizioni
automaticamente nel primo campo imput type (codice) Una volta aperta la pagina.
Il cursore, inoltre, dovrebbe ritornare di nuovo a capo nel primo campo imput
una volta inseriti i dati anche nell'ultimo (imput type=text name=prezzo),
tramite invio o il tasto TAB ovviamente.
grazie