Skip to content

Instantly share code, notes, and snippets.

@eoikonomou
Created October 23, 2019 13:24
Show Gist options
  • Save eoikonomou/441eb471da6689c68fb08df310cc6581 to your computer and use it in GitHub Desktop.
Save eoikonomou/441eb471da6689c68fb08df310cc6581 to your computer and use it in GitHub Desktop.
Disable developer tools
document.onkeydown = function (event) {
if (event.keyCode == 123) { // Prevent F12
return false;
} else if (event.ctrlKey && event.shiftKey && event.keyCode == 73) { // Prevent Ctrl+Shift+I
return false;
}
};
// Hides context menu on right click of the mouse to prevent right click - inspect
document.oncontextmenu = function (e) {
e.preventDefault();
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment