I have a mysql db table that has every U.S. city, state, zip, lat, long. On my site page I have a form input for cities. As the user types, I'd like to suggest city, state. What current practices/techniques are good? (Limitations are jQuery, PHP, MYSQL)
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
closed as not constructive by bažmegakapa, Roman C, gaige, Shikiryu, YaK Apr 16 at 9:24
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
jQuery UI has a nice autocomplete feature. It is quite well configurable. You should send the data in JSON format from the server, Autocomplete will mostly handle the rest. Check out the docs. |
|||
|
|
|
you may want to try a pre-existing plugin such as: http://code.drewwilson.com/entry/autosuggest-jquery-plugin Looks like it uses ajax and JSON to get data from your server. All styling is done in CSS too :o) |
|||
|
|
