Code by which I can prevent scrolling up and down
Closed
amolmali
Posts
1
Registration date
Friday 21 November 2014
Status
Member
Last seen
21 November 2014
-
21 Nov 2014 à 01:07
Blocked Profile - 21 Nov 2014 à 11:48
Blocked Profile - 21 Nov 2014 à 11:48
Related:
- Code by which I can prevent scrolling up and down
- Cs 1.6 code - Guide
- Nitro racing unlock code - Android Forum
- Tetris unlock code - Nokia Forum
- Www.gameloft.com unlock code - Nokia Forum
- Lava reset code ✓ - Phones, PDA & GPS Forum
1 response
I am going to be honest, I cut and paste this solution from another, untested as of time of posting.
The codes are the key codes that is produce when the keys are pressed. If you wish, you can even disable other keys, just find the appropriate codes!
"If you can't soar with the eagles, then don't fly with the flock!" - Oliver Sykes; Bring Me The Horizon
document.addEventListener("keydown", function (e) {
if([37,38,39,40].indexOf(e.keyCode) > -1){
e.preventDefault();
// add in what ever else you want the keys to do if anything!
}
}, false);
The codes are the key codes that is produce when the keys are pressed. If you wish, you can even disable other keys, just find the appropriate codes!
"If you can't soar with the eagles, then don't fly with the flock!" - Oliver Sykes; Bring Me The Horizon