I have code for press enter key like this:
In my real webpage the following textfield is input qty, output qty, id#, mc# ,and qty. It is possible that after I input number in output qty automatic the result will be appear in qty?Code:<script language="javascript">
function handleEnter(e, nextfield)
{
var characterCode = (e && e.which)? e.which: e.keyCode;
if(characterCode == 13)
{
document.getElementById(nextfield).focus();
return false;
}
else
{
return true;
}
}
</script>
Thank you..I'm sorry if i accidentall double post my thread.

