I have a link that function as the submit button of the search bar:
<a href="#" id="search"><img src="images/go.png" /></a>
Is there anyway I can set enter
as the hotkey for that link?
For example, when user press enter
it will automatically fire the link and start searching, just like google.
This is what I got so far, but seems like it doesn't work:
addEventListener("keypress", function (event) {
if (event.keyCode == 13)
$('search').trigger('click');
});