[jQuery] Re: autosuggest help

2008-09-24 Thread allan2008
Thanks for the help guys! I understand this much better now. I really appreciate your work Jorn, thanks for sharing with us!

[jQuery] Re: autosuggest help

2008-09-24 Thread BB
Here just a little example how you can do this: // index.htm ... $("#autocomplete").autocomplete("search.php"); ... // search.php that's all. On 24 Sep., 09:53, "Jörn Zaefferer" <[EMAIL PROTECTED]> wrote: > You can't query a MySQL database from JavaScript. There has to be some > serverside

[jQuery] Re: autosuggest help

2008-09-24 Thread Jörn Zaefferer
You can't query a MySQL database from JavaScript. There has to be some serverside script to execute a query and return the results. Thats what search.php is supposed to do. Jörn On Tue, Sep 23, 2008 at 8:51 PM, allan2008 <[EMAIL PROTECTED]> wrote: > > Hello. > > I'm trying to figure out the bassi