How to disable enter key in form submission.
If you are looking on how to disable the enter key in form submit try this javascript code…..
onkeypress=”return event.keyCode!=13″
I tried this and tested using Firefox and IE and it works.
You can also try a long JS code like the following….
function disableEnterKey(e)
{
var key;
if(window.event)
key = window.event.keyCode; //IE
else
key = e.which; //firefox
if(key == 13)
return false;
else
return true;
}
And then call this function in your HTML element (e.g input) onKeyPress=”return disableEnterKey(event)”
Reference
