Created
May 12, 2014 07:02
-
-
Save carlosrojaso/e0bcbe507ec3fbe1d53a to your computer and use it in GitHub Desktop.
datalist
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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