[JAVASCRIPT] is there any way to bypass windows filter keys?
I'm making a web game using Javascript, and a problem I've come across is that a feature in windows called filter keys will delay key's repeated input (for an onkeypress event listener) after a period of time when the user first starts holding down a key. There are of course ways to disable this in windows settings, but I don't want to prompt users (unless I absolutely have too) to disable it manually. I'm assuming the problem comes from how JS listens for the system OS to send a response. I'm still pretty new to JS, but I'm wondering if it has a capability to bypass that, and instead get the direct input from the keyboard and read those inputs instead? Or are my assumptions wrong, and/or is there another/no way? Any help would be appreciated. Thanks :)