fmoo / react-typeahead

Pure react-based typeahead and typeahead-tokenizer
ISC License
677 stars 231 forks source link

How to blur input? #154

Open henrikra opened 8 years ago

henrikra commented 8 years ago

Im doing suggestive search and I would like to blur out the focus from input field when I submit the form. Aka not selecting item from typeahead list.

henrikra commented 8 years ago

I managed to solve it already :D. I just added this to the onKeyUp event: $(event.target).blur();