MindGame
MindGame

Reputation: 1251

Auto Suggest Dropdownlist

Is there a JavaScript library that allows me to do the following:

Ex. User types in an address and it returns address_id, street (10 Lincoln Ave), city, state and zipcode

I wanted to do a auto suggest textbox, but that does not restrict the user from entering values that are not returned from the Ajax call.

Thank you, -Tesh

Upvotes: 0

Views: 877

Answers (1)

Sidharth Mudgal
Sidharth Mudgal

Reputation: 4264

I suggest you take a look at jQueryUI autocomplete. It does the first 2, but you can customize it to get the 3rd requirement too.

Upvotes: 1

Related Questions