0

Prototype/scriptaculous can do an easy autosuggest in the input box. It's pretty much built in.

How can I do that with JQuery?

Rob W
  • 341,306
  • 83
  • 791
  • 678
TIMEX
  • 259,804
  • 351
  • 777
  • 1,080

2 Answers2

3

jQuery plugin: Autocomplete

jitter
  • 53,475
  • 11
  • 111
  • 124
0

If you mean something that will get the info from the server then you can look at this question: 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.

Community
  • 1
  • 1
James Black
  • 41,583
  • 10
  • 86
  • 166