In order to avoid the Form Submission by pressing the ’Enter Key’ you have to write following code on the KeyPress Event Of the Body Tag
function DisableEnterKey()
{
if (window.event.keyCode == 13)
{
event.returnValue=false;
event.cancel = true;
}
}
<body onkeydown="DisableEnterKey();">
Share with