Skip to content

Instantly share code, notes, and snippets.

@devdays
Created November 30, 2014 18:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save devdays/24b50cc89c61dc81684d to your computer and use it in GitHub Desktop.
Save devdays/24b50cc89c61dc81684d to your computer and use it in GitHub Desktop.
HTML5 DataList input
<input type= "text" list= "pacificstates" name= "State" id= "State" placeholder= "Pick a State" />
<datalist id= "pacificstates">
<select>
<option value= "California" />
<option value= "Oregon" />
<option value= "Washington" />
</select>
</datalist>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment