The datalist element may be used to predefine a list of options for a pre-defined input element.
This element offers a possibility of integrated auto-complete (not browser driven) feature that simulates a search box. The main difference between a regular search box and this one is that with a datalist we are responsible to suggest possible answers to a user while he or she is inputting a text into a field.
This is a very useful feature that offers fast responses to users and may be very handy in long lists of countries or a similar application. Instead of scanning through entire list, the input field will suggest an item that starts with the letter we just pressed.
Syntax:
<input list="datalist" />
<datalist id="datalist"><options></datalist>
Attributes:
Example
The example with datalist element and input fields:
<html>
<head>
<style type="text/css">
P {margin: 10px 5px;}
</style>
</head>
<body>
<p>The drop-down list below is pre-defined with the <datalist> tag:</p>
<input list="subject" name="subject">
<datalist id="subject">
<option value="java">
<option value="asp\.net">
<option value="php">
<option value="android">
<option value="operating system">
</datalist>
</body>
</html>
Comments
No comments have been made yet.
Please login to leave a comment. Login now