Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pressing enter key dose nothing #37

Open
Rob2k9 opened this issue Feb 16, 2020 · 1 comment
Open

pressing enter key dose nothing #37

Rob2k9 opened this issue Feb 16, 2020 · 1 comment

Comments

@Rob2k9
Copy link

Rob2k9 commented Feb 16, 2020

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

@DaBluLite
Copy link

Try this (After the SpatialNavigation has been initialized):

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants