Single-Select Listbox

A selectable list of options with Up/Down arrow navigation. Click or press Enter/Space to select an item.

focusgroup="listbox block nomemory"
Try it: Use and to navigate. Press Enter or Space to select an option.
Apple
Banana
Cherry
Date
Elderberry
Fig
Grape
Honeydew
View source
<div focusgroup="listbox block nomemory"
     aria-label="Favorite fruit"
     aria-multiselectable="false" class="listbox">
    <div class="listbox-option selected" tabindex="0"
         aria-selected="true" focusgroupstart>Apple</div>
    <div class="listbox-option" tabindex="0"
         aria-selected="false">Banana</div>
    <div class="listbox-option" tabindex="0"
         aria-selected="false">Cherry</div>
    <div class="listbox-option" tabindex="0"
         aria-selected="false">Date</div>
    <div class="listbox-option" tabindex="0"
         aria-selected="false">Elderberry</div>
    <div class="listbox-option" tabindex="0"
         aria-selected="false">Fig</div>
    <div class="listbox-option" tabindex="0"
         aria-selected="false">Grape</div>
    <div class="listbox-option" tabindex="0"
         aria-selected="false">Honeydew</div>
</div>

Listbox with Wrapping

With wrap, navigation continues from the last item back to the first (and vice versa).

focusgroup="listbox block wrap nomemory"
Try it: Navigate to "Mango" (last item), then press and focus wraps to "Avocado".
Avocado
Coconut
Guava
Kiwi
Mango
View source
<div focusgroup="listbox block wrap nomemory"
     aria-label="Tropical fruits"
     aria-multiselectable="false" class="listbox">
    <div class="listbox-option selected" tabindex="0"
         aria-selected="true" focusgroupstart>Avocado</div>
    <div class="listbox-option" tabindex="0"
         aria-selected="false">Coconut</div>
    <div class="listbox-option" tabindex="0"
         aria-selected="false">Guava</div>
    <div class="listbox-option" tabindex="0"
         aria-selected="false">Kiwi</div>
    <div class="listbox-option" tabindex="0"
         aria-selected="false">Mango</div>
</div>