Mike
Mike

Reputation: 13

Input Box Drop Down

I am trying to create an input field that begins listing possible names when the user starts typing. Almost exactly like "google suggestions". So the possible matches of what a user is typing begin to appear and narrow as the user types more letters...

What is this called? And what would be the best way to approach it? AJAX? Just javascript?

Upvotes: 1

Views: 2563

Answers (3)

Matt
Matt

Reputation: 7249

Easiest thing i think is just to use jquery. http://jqueryui.com/demos/autocomplete/ You don't have to use ajax, you can preload the data in a list if you want to.

Upvotes: 2

Bilal Murtaza
Bilal Murtaza

Reputation: 795

what you need is jquery autocomplete

  1. jquery auto complete or for asp.net ajax toolkit
  2. ASP.net ajax toolkit autocomplete

hope this helps.

Upvotes: 4

nidhin
nidhin

Reputation: 6940

It's known as Autocomplete or Autosuggest

Try Jquery autocomplete

Upvotes: 2

Related Questions