Skip to content

Instantly share code, notes, and snippets.

@hypeJunction
Last active January 9, 2022 10:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hypeJunction/22e970d91d27ae7f039aeb2ef20bf300 to your computer and use it in GitHub Desktop.
Save hypeJunction/22e970d91d27ae7f039aeb2ef20bf300 to your computer and use it in GitHub Desktop.
<label>
<span id="select-label">Favorite animal</span>
<input type="hidden" name="animal" />
</label>
<button
aria-labelledby="select-label select-placeholder"
aria-controls="select-dropdown"
aria-haspopup="list"
aria-expanded="false"
>
<span id="select-placeholder">Select an option</span>
<svg aria-hidden><title>Arrow down</title></svg>
</button>
<ul id="select-dropdown"
aria-labelledby="select-label"
aria-hidden
role="listbox"
>
<li>Elephant</li>
<li>Bear</li>
<li>Lion</li>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment