Reputation: 635
While typing for search on google it provide assistance for search. eg: typing 'ti' provides timesofindia,tin,timesjobs. Same purpose is needed while tying i need to fetch data for backend and need to provide assist. Is there any jquery plugin or any javascript.? Any way of help is appreciated. :)
Upvotes: 0
Views: 140
Reputation: 1332
you could use the JQuery autocomplete plugin in JQuery UI: http://jqueryui.com/demos/autocomplete/
You should use AJAX to load the data while user typing though, and put the loaded data into the jquery autocomplete plugin.
Upvotes: 0