Disable arrow scroll in flash

There is code for embedding flash on my web page. When playing a game, the page scrolls with the Up and Down keys. How can I prevent this? Firefox is fine, but it only scrolls in IE.

+1
source share
1 answer

JQuery method:

$(document).bind('keydown keypress', function(e) {
    if(e.keyCode > 36 && e.keyCode < 41) e.preventDefault();
});

Scrolling the page when you press the arrow keys (key 37-40) (when you press the key) and when you hold them (press). So, if that happens, we prevent the default evente.preventDefault();

+4
source

All Articles