In that page I want to block the user to perform below actions, Right Click F12 Ctrl + Shift + I Ctrl + Shift + J Ctrl + Shift + C Ctrl + U The below link, http://andrewstutorials.blogspot.in/2014/03/disable-ways-to-open-inspect-element-in.html Disabled Right Click : add on your tag body html <body oncontextmenu="return false;"> Disabled Keys : document.onkeydown = function(e) { if(event.keyCode == ...
Read More »Keyboard Codes Reference Javascript
Keyboard Codes Reference Javascript Key Keyboard code Backspace 8 Tab 9 Enter 13 Shift 16 Ctrl 17 Alt 18 Pause 19 Capslock 20 Esc 27 Page up 33 Page down 34 End 35 Home 36 Left arrow 37 Up arrow 38 Right arrow 39 Down arrow 40 Insert 45 Delete 46 0 48 1 49 2 50 3 51 4 ...
Read More »Using Keyboard Shortcuts in Javascript
Using Keyboard Shortcuts in Javascript – If you want to enhance your web app, Javascript keyboards shortcuts is definitely something to consider. In this article, you’ll learn to use JS keyboard shortcuts, with and without the JQuery framework. Keyboard shorcuts on the web, let’s talk about it The most important thing to think about when implementing Javascript keyboard shortcuts on a ...
Read More »