Kod:
<input type="text" name="c1" onKeyDown="if (event.keyCode==13) { c2.focus(); }" /> <br />
<input type="text" name="c2" onKeyDown="if (event.keyCode==13) { c3.focus(); }" /> <br />
<input type="text" name="c3" onKeyDown="if (event.keyCode==13) { c1.focus(); }" /> <br />
Funkar för mig i Fx samt IE7.