Submit button

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Dear Experts,

Currently, in my web form there is many controls and with a submit button.
When I click Enter is will activate the submit. How can I disable the 'Enter'
key to activate the Submit button?

Regards,
SB
 
Dear Seok Bee,

Don't Worry ! adding a single line code would solve your problem.

Add this code in the Enter button,
onkeypress="return event.keycode!=13";

Please let me know the status.
 
Back
Top