11-11-2012 11:29 PM
Hello All,
Building a little app with search field. I assumed, incorrectly, that the keyboard would close if I trapped the enter key...
<input type="text" id="searchString" onKeydown="Javascript: if (window.event.keyCode==13) startSearch()"/>
Search gets performed and results are returned, but keyboard stays open.
Tried document.getElementById('btnSearch').click()
Can anybody point me in the right direction?
Thx in advance.
11-12-2012 08:44 AM