autocompletetextboxtypeahead

Handle selected event in autocomplete textbox using bootstrap Typeahead?


I want to run JavaScript function just after user select a value using autocomplete textbox bootstrap Typeahead.

I'm searching for something like selected event.


Solution

  • $('.typeahead').on('typeahead:selected', function(evt, item) {
        // do what you want with the item here
    })