Skip to content

Instantly share code, notes, and snippets.

@jbollman7
Created October 13, 2022 13:54
Show Gist options
  • Save jbollman7/4852c831555ad0cb0823657a6e9a0dc1 to your computer and use it in GitHub Desktop.
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
<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