Skip to content

Instantly share code, notes, and snippets.

@carlosrojaso
Created May 12, 2014 07:02
Show Gist options
  • Save carlosrojaso/e0bcbe507ec3fbe1d53a to your computer and use it in GitHub Desktop.
Save carlosrojaso/e0bcbe507ec3fbe1d53a to your computer and use it in GitHub Desktop.
datalist
<!DOCTYPE html>
<html>
<body>
<form action="demo_form.asp" method="get">
<input list="browsers" name="browser">
<datalist id="browsers">
<option value="Internet Explorer">
<option value="Firefox">
<option value="Chrome">
<option value="Opera">
<option value="Safari">
</datalist>
<input type="submit">
</form>
<p><b>Note:</b> The datalist tag is not supported in Internet Explorer 9 and earlier versions, or in Safari.</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment