asp.net mvc - Autopopulate search results using jquery in MVC 3 -
i have textbox called "name" ,
when user types letter ,suppose "a" names beginning letter should listed , user can select name.
is kind of listing possible using jquery in mvc 3 application?
try jquery autocomplete can able use in asp.net mvc3 application.
var availabletags = ["al", "ak", "az", "ar", "ca", "co", "ct", "de", "dc", "fl", "ga"]; $("#card_state").autocomplete({ source: availabletags });
@html.textboxfor(model => model.state, new { id = "card_state" })
Comments
Post a Comment