Redirect Page

Hi, I don’t know if this is possible, or not, but I have been trying to have my website redirect to another page when you press the ESC key. However, I have not gotten it to work.

import wixLocation from ‘wix-location’;
$w.body.addEventListener(“keydown”, function (event) {
if (event.keyCode === 27)
wixLocation.to(“https://notepadpro.wixsite.com/notepad/home-1”);
}
) ;

Hi,
I’m afraid that currently there’s no option to add event listener to keyboard events.
You can suggest it as a feature request here .

Thanks,
Tal.