Forums

How not to send a form when the enter button is pressed?

UHU 14 Oct, 2008
Please let me know if you have something that goes nicely with chronoforms.

L.
UHU 20 Oct, 2008
This is what I've found

function disableEnterKey(e)
{
     var key;     
     if(window.event)
          key = window.event.keyCode; //IE
     else
          key = e.which; //firefox     

     return (key != 13);
}


It seems to be working just fine.

Thanks,

L.
This topic is locked and no more replies can be posted.