rjusa
11-06-2003, 10:32 AM
I'm using the following code:
function keyProcess()
{
if(event.keyCode==13)
{
return false;
}
}
<body onkeydown="return keyProcess()">
Well, this works fine if you're not in a text entry field...if you are and hit enter, the form goes to submit. Any thoughts?
Thanks,
Ron
function keyProcess()
{
if(event.keyCode==13)
{
return false;
}
}
<body onkeydown="return keyProcess()">
Well, this works fine if you're not in a text entry field...if you are and hit enter, the form goes to submit. Any thoughts?
Thanks,
Ron