HTML ARIA role="listbox"

Help us to keep this website almost Ad Free! It takes only 10 seconds of your time:
> Step 1: Go view our video on YouTube: EF Core Bulk Extensions
> Step 2: And Like the video. BONUS: You can also share it!

Example

A widget that allows the user to select one or more items from a list of choices.

<ul role="listbox">
  <li>One</li>
  <li>Two</li>
  <li>Three</li>
</ul>

Typically, you would use JavaScript to build the multiple-selection functionality.



Got any HTML Question?