Code by which I can prevent scrolling up and down
Closed
amolmali
Posts
1
Registration date
Friday November 21, 2014
Status
Member
Last seen
November 21, 2014
-
Nov 21, 2014 at 01:07 AM
Blocked Profile - Nov 21, 2014 at 11:48 AM
Blocked Profile - Nov 21, 2014 at 11:48 AM
Related:
- Code by which I can prevent scrolling up and down
- Battery reset code - Guide
- Samsung volume increase code - Guide
- Lava reset code ✓ - Phones, PDA & GPS Forum
- How to get whatsapp verification code online - Guide
- Cs 1.6 code - Guide
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