Prototype/scriptaculous can do an easy autosuggest in the input box. It's pretty much built in.
How can I do that with JQuery?
Prototype/scriptaculous can do an easy autosuggest in the input box. It's pretty much built in.
How can I do that with JQuery?
If you mean something that will get the info from the server then you can look at this question: http://stackoverflow.com/questions/967199/jquery-auto-suggest-serverside
It is risky to have it done on the client, as you need to pass all the data to the client, then you just search as the user types, so I doubt that is what you expect.