There is an input field, and upon entering some characters in it, jquery shows div with search results (as an auto-suggest type made by jquery core only keyup()). Shortly, this search is absolutely similar as one on FB.
Now, any clue how can I apply down button (on keyboard) to land on that div with results via jquery after div show up and user presses down button – as well to navigate throughout div with up and down keys if possible?
<input id="target"> //inp field
<div id ="search"> //div that show search results
Thx.
You can use the event “keypress” of JQuery.