+ 3
HTML <select>
It never got explained
7 Respuestas
+ 4
It is used to make Dropdowns for Selections.
E.g. : when you register in a website there you need to select your country from various options which is just a Dropdown...
● Refer this for more info https://html.com/tags/select/
+ 3
You use the <select> and <option> elements to create a dropdown menu:
<select>
<option>HTML</option>
<option>CSS</option>
<option>JavaScript</option>
</select>
+ 2
Is there a library for all this stuff?
+ 1
Is there a fastr way of doing this?
Like if i wanted to make birthdate years/months/day is there a faster way?
+ 1
Try this :
<input type="date"">
+ 1
Alright
+ 1
Check here :
http://html5doctor.com/html5-forms-input-types/