Change the value selected from autocomplete

498 Views Asked by At

I am trying to update the value of an input field after the user chooses a selction from autocomplete. I am using typeahead js for autocomplete feature. Here is my jsfiddle

https://jsfiddle.net/aminur/jLa7x28y/7/

<div id="the-basics">
<input class="typeahead" type="text" placeholder="States of USA">
</div>

Once the user selects a state, I want to update the value of the input field to its short form. Like if the user selects Connecticut, I would like to update the display as CT. I tried using oninput, bind functions on the input tag. It didnt work. can you please help?

0

There are 0 best solutions below