You need to sign in to do that
Don't have an account?

Enabling a functionality by pressing "Enter" key
Hi,
I would like to enable my search functionality when "Enter" key is pressed in the input text field. Can someone help me out with this.
Best Regards
http://bobbuzzard.blogspot.co.uk/2012/10/press-enter-to-submit.html
This may help you
onKeyUp--- event handler is there, you can use it.
onkeyup="if(event.keyCode == 13){YourActionFunction(this.value);}"