Skip to content

Instantly share code, notes, and snippets.

@kypflug
Created May 12, 2016 16:28
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 kypflug/c6ef834efaead688770a72e046ee68ba to your computer and use it in GitHub Desktop.
Save kypflug/c6ef834efaead688770a72e046ee68ba to your computer and use it in GitHub Desktop.
URL control w/ datalist
<form>
<label for="url">Enter URL:</label>
<input type="url" id="url" list="urllist" placeholder="Enter URL including HTTP://" />
<datalist id="urllist">
<option value="http://www.bing.com/" label="Bing"></option>
<option value="http://dev.microsoftedge.com/" label="Microsoft Edge Developer"></option>
</datalist>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment