I have my website in which I have email pdf functionality
Procedure is :
- when user enters email and then he has to click on submit button
- after clicking submit button , form will not submit and form will hide and
- there is another hidden div contains thank you message which appears with Ok button.
- When User Click on OK button then form will submit.
But Now the Problem is :
When User enter email and if he press ENTER accidentally then form gets submitted without showing thank you message.
I want to Disable ENTER when user Press Enter key.
Check which key was pressed ant if was the enter key return false. Using jQuery this is easy.
you can try this to disable the submit on keypress
Use this code, will surely work for you:
Use a regular html button instead of a submit button. In the onclick event of the button write some Javascript to show/hide the DIV. The button on the Thank You DIV make that a submit button.
Place this in the script: