luke-chang / js-spatial-navigation

A javascript-based implementation of Spatial Navigation.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

pressing enter key dose nothing

Rob2k9 opened this issue · comments

i need to run a some jquery code when a focused eliment is proessed

Try this (After the SpatialNavigation has been initialized):

document.addEventListener('keypress', function (e) {
    if (e.key === 'Enter') {
        document.activeElement.click();
    }
});