Categories
5G Network
Agile
Amazon EC2
Android
Angular
Ansible
Arduino
Artificial Intelligence
Augmented Reality
AWS
Azure
Big Data
Blockchain
BootStrap
Cache Teachniques
Cassandra
Commercial Insurance
C#
C++
Cloud
CD
CI
Cyber Security
Data Handling
Data using R
Data Science
DBMS
Design-Pattern
DevOps
ECMAScript
Fortify
Ethical Hacking
Framework
GIT
GIT Slack
Gradle
Hadoop
HBase
HDFS
Hibernate
Hive
HTML
Image Processing
IOT
JavaScript
Java
Jenkins
Jira
JUnit
Kibana
Linux
Machine Learning
MangoDB
MVC
NGINX
Onsen UI
Oracle
PHP
Python
QTP
R Language
Regression Analysis
React JS
Robotic
Salesforce
SAP
Selenium
Service Discovery
Service Now
SOAP UI
Spark SQL
Testing
TOGAF
Research Method
Virtual Reality
Vue.js
Home
Recent Q&A
Feedback
Ask a Question
What is datalist tag?
Home
>
HTML
>
What is datalist tag?
Oct 24, 2019
in
HTML
Q: What is datalist tag?
datalist-tag
html-datalist
1
Answer
0
votes
Oct 24, 2019
The HTML 5 datalist tag provides an autocomplete feature on the form element. It facilitates users to choose the predefined options to the users to select data.
<label>
Enter your favorite cricket player: Press any character<br />
<input type="text" id="favCktPlayer" list="CktPlayers">
<datalist id="CktPlayers">
<option value="Sachin Tendulkar">
<option value="Brian Lara">
<option value="Jacques Kallis">
<option value="Ricky Ponting">
<option value="Rahul Dravid">
<option value="Shane Warne">
<option value="Rohit Sharma">
<option value="Donald Bradman">
<option value="Saurav Ganguly ">
<option value="AB diVilliers">
<option value="Mahendra Singh Dhoni">
<option value="Adam Gilchrist">
</datalist>
</label>
More details.
Click here to read more about HTML
Click here to read more about Insurance
Facebook
Twitter
LinkedIn
Related questions
+1
vote
Q: What is the use of details and summary tag in HTML?
Oct 24, 2019
in
HTML
summary-tag
html-summary-tag
+1
vote
Q: What is button tag in HTML?
Oct 24, 2019
in
HTML
button-tag
button-html
html-button
0
votes
Q: What is the use of figcaption tag in HTML 5?
Oct 24, 2019
in
HTML
figcaption-tag
figcaption-html
0
votes
Q: What is the use of figure tag in HTML 5?
Oct 24, 2019
in
HTML
figure-tag
html-tag
0
votes
Q: What is the difference between progress and meter tag?
Oct 24, 2019
in
HTML
progress-bar
meter-tag
progress-tag
0
votes
Q: What is the use of an iframe tag?
Oct 24, 2019
in
HTML
iframe-tag
html-iframe
...