Forum Moderators: open
<input id=first>
<input>
<input onkeydown="if(event.keyCode==9 || event.keyCode==13) document.getElementById('first').focus()">
<input>
<script type="text/javascript">
function tab(e){
if(e.keyCode == (9 || 13)){
document.getElementById('first').focus();
}
try {
e.stopPropagation();
e.preventDefault();
}
catch(err){
e.cancelBubble = true;
e.returnValue = false;
}
}
</script>
<input id=first>
<input>
<input onkeydown="tab(event)">
<input>
<script type="text/javascript">
function tab(e){
if(e.keyCode == (9 || 13)){
document.getElementById('first').focus();
try {
e.stopPropagation();
e.preventDefault();
}
catch(err){
e.cancelBubble = true;
e.returnValue = false;
}
}
}
</script>
<input id=first>
<input>
<input onkeydown="tab(event)">
<input>