How to trigger click event on pressing enter key using jQuery?
Answers
Answered by
0
To check whether user pressed ENTER key on web page or on any input element, you can bind key press or key down event to that element or document object itself. Then in bind() function check the key code of pressed key whether it's value is 13 is not .
Similar questions