I have state and city dropdown list in asp.net 3.5 applicattion .
but i want city as a textbox when i type keyword then autocomplete mode should be occour .
I want to implement it through juery could u please send code for this.
Thanks Manoj
I have state and city dropdown list in asp.net 3.5 applicattion .
but i want city as a textbox when i type keyword then autocomplete mode should be occour .
I want to implement it through juery could u please send code for this.
Thanks Manoj
$("#yourtextboxID").autocomplete({source: ["Los Angeles","Las Vegas","Madrid"]});
The most straightforward way is to use the jQuery Autocompleye plugin.
If that doesn't tickle your fancy, try checking out this question. If you're having problems specifically with Asp.NET in conjunction with jQuery and AJAX, it looks like this question may be of use as well.