HTML <select> with required Attribute
HTML <select> with required Attribute
The required
attribute specifies that an option with a non-empty string value must be selected when submitting the form.
Example
HTML Online Editor
<!DOCTYPE html>
<html>
<body>
<h2>Choose Your Favourite Fruit.</h2>
<form action="/fruits.php">
<select name="myFruit" required>
<option value="">none</option>
<option value="Apple">Apple</option>
<option value="Banana">Banana</option>
<option value="Cherry">Cherry</option>
<option value="Dates">Dates</option>
</select>
<button type="submit">Submit</button>
</form>
</body>
</html>
Attribute Value
The required
is a boolean attribute, and it does not have any value.
Reminder
Hi Developers, we almost covered 99.5% of HTML Tutorials with examples for quick and easy learning.
We are working to cover every Single Concept in HTML.
Please do google search for:
Join Our Channel
Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.
This channel is primarily useful for Full Stack Web Developer.