I have a search field in my site and I wanted it to autocomplete when my users typed in their searches. At first, I looked into ajax but found it to be kind of tricky for a newby like myself. Then I found the jQuery.Autocomplete option and I was able to implement that with no problem.
My question is, is there any difference between Ajax and the jQuery.autocomplete function or is the autocomplete function just a shorthand version of Ajax. I went with the autocomplete function because it seemed easier to grasp, but if there are advantages to using Ajax to implement autosuggest then I'll try to learn it again.
note: I'm pulling the data from a mysql server. They are searching through a mysql table for other users.