vote up 3 vote down star
2

I'm using PHP and I've never really done anything with Javascript or JQuery or AJAX. I'm just wondering if there are any available solutions to accomplish the same effect of auto-completion that SO uses for entering tags.

There are plugins which can handle one word but I haven't seen any that handles multiple words.

Also, I hear JQuery is hosted on google code. Is it a good or bad idea to link directly from that?

flag

78% accept rate

4 Answers

vote up 2 vote down check

To answer the thing about Google. I have moved over to accessing JQuery via http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js in my sites.

As more people do this means that it's more likely to be cached on user's machines, so my vote goes for good idea.

link|flag
We roll this out as part of our default templates as well. Google can serve this code zipped and out of a CDN faster than us, plus if there's even a 2% chance that a visitor has this cached it's better than no chance at all. – Tom Feb 6 at 14:18
+1 for Google load. – Wayne Khan Feb 8 at 5:57
vote up 3 vote down

I've used

http://plugins.jquery.com/project/autocompletex

link|flag
vote up 1 vote down

The examples here support multiple word autocomplete with jQuery

link|flag
vote up 0 vote down

There are many tutorials out there for doing this with many libraries (not just jquery). If you learn xmlhttprequest object in javascript you won't need to use a library at all for something this simple.

link|flag
I'd like to use jquery for other things as well so I might as well just stick to it throughout the site – d03boy Feb 6 at 15:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.