I am Developing classic Html Based Application. I want to create auto complete Text Box. So when user will press any key, we will send ajax request to the server and will get data related to key. Like this example is doing: jqueryui.com/autocomplete . I am getting data from server using ajax. Data comes in the form of json.
[{"id":"2152","name":"Alltel"}, {"id":"2254","name":"American Eagle"}, {"id":"2255","name":"Ameritrade"}, {"id":"2256","name":"Amtrak"}, {"id":"2257","name":"Apple"}, {"id":"2149","name":"AMC Theaters"}]
Please help me to sort out this problem