Skip to content

Instantly share code, notes, and snippets.

@thirdj
Created April 17, 2013 02:14
Show Gist options
  • Select an option

  • Save thirdj/5401285 to your computer and use it in GitHub Desktop.

Select an option

Save thirdj/5401285 to your computer and use it in GitHub Desktop.
keyboard, mouse block
!function mouseKeyboardBlock() {
document.oncontextmenu = new Function('return false');
document.onselectstart = new Function('return false');
document.ondragstart = new Function('return false');
document.ondragenter = new Function('return false');
document.ondragover = new Function('return false');
document.ondrop = new Function('return false');
document.onkeydown = new Function('return false');
}();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment