jquery disable arrow keys of keyboard on web page
I want to disable left and right arrows key of keyboard on a webpage, preventing the scroll to the previous or next slide. I've this code: jQuery(document).ready(function( $ ){ document.onkeydown = function(e) { if (e.keyCode == 39 ) { alert('Not…