3

Coming up with a server side JQuery plug-in is proving to be a bit brutal. I have looked around for one but they work off static information. Does anyone have a good free server-side Auto suggest for JQuery?

dvancouver
  • 723
  • 5
  • 14
  • 22

5 Answers5

8

Do you mean you want a client-side JQuery autocomplete control that queries a server-side database for the data? If so, this tutorial covers exactly that, with a live demo here.

RichieHindle
  • 272,464
  • 47
  • 358
  • 399
6

Take a look at these:

  1. pengoworks
  2. ajax daddy
  3. jQuery Site

Example:

$('#autocomplete').autocomplete("myWebService.ashx");

You would then create the myWebService.ashx that your jQuery would call to get the data from, typically in JSON format...

Take a look at this question here on StackOverflow.

Community
  • 1
  • 1
RSolberg
  • 26,821
  • 23
  • 116
  • 160
5

Autocomplete is now built into jQuery UI:

http://jqueryui.com/demos/autocomplete/

Marshall Æon
  • 407
  • 1
  • 5
  • 18
0

Newborn Remote-Auto-Search-Suggest BBSearch

Disclaimer: I'm the author.

fguillen
  • 36,125
  • 23
  • 149
  • 210
0

There's also an autocomplete jQuery plug-in by Drew Wilson that's lightweight but has some really nice additional features compared to the jQuery UI one.

Might be of interest.

I have no affiliation with Drew.

Squig
  • 862
  • 6
  • 15