luke-chang / js-spatial-navigation

A javascript-based implementation of Spatial Navigation.
Mozilla Public License 2.0
370 stars 117 forks source link

pressing enter key dose nothing #37

Open Rob2k9 opened 4 years ago

Rob2k9 commented 4 years ago

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

DaBluLite commented 2 years ago

Try this (After the SpatialNavigation has been initialized):

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