Created
October 13, 2022 13:54
-
-
Save jbollman7/4852c831555ad0cb0823657a6e9a0dc1 to your computer and use it in GitHub Desktop.
HTML Dropdwon option. Select an option is displayed, but is disabled when dropdown mode is activated. Meaning you have to give a valid option
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
<label for="job-size">How did you hear about us? | |
<select id="dropdown"> | |
<option disabled="disabled" selected="selected">Select an option</option> | |
<option value="1">NewsPaper</option> | |
<option value="2">Facebook</option> | |
<option value="1">Word of mouth</option> | |
<option value="2">other</option> | |
</select> | |
</label> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment