Skip to content

[Dropdown] - Cannot press enter to go to links in dropdown list #5531

@qmtran1

Description

@qmtran1

I'm working on a keyboard-accessible top navigation bar using Semantic UI, but I can't use the Enter/Return key to access the links in the drop-down menus, even when the focus is on the link. I created a blank JS Fiddle here to demonstrate. I'm also using Chrome Vox as a screen reader, so that I know where the current focus is.

<div class="ui menu">
    <a class="item" href="https://www.google.com">Google 1</a>
    <div class="ui dropdown link item">
        <a href="#">
            <span>Google 2</span>
            <i class="dropdown icon"></i>
        </a>
        <div class="menu">
            <a class="item" href="https://www.google.com">Google 2.1</a>
            <a class="item" href="https://www.google.com">Google 2.2</a>
        </div>
    </div>
</div>

JavaScript initialization:

$(document).ready(function() {
    $('.ui.dropdown').dropdown();
});

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions