I am using a Bootstrap Pop up
. This Pop up gets opened from Main Form
.
In this Pop up, I have TextBox
& a Button
.
<input class="form-control" type="text">
<input type="button" value="Search" onclick="searchEmployee()" />
When I hit ENTER key when Pop up
is open, the Main Form
gets submitted
. The Main Form has a submit button.
How can I avoid form submit
in pop up on ENTER key press?
And on the contrary enable ENTER
key submit, when pop up
is closed.