Skip to content

Instantly share code, notes, and snippets.

@mkk360
Last active July 17, 2025 11:00
Show Gist options
  • Select an option

  • Save mkk360/c94249530e76b8404e4a2b055253ecfa to your computer and use it in GitHub Desktop.

Select an option

Save mkk360/c94249530e76b8404e4a2b055253ecfa to your computer and use it in GitHub Desktop.
Disabled Key
/*----------- 00. Right Click Disable ----------*/
window.addEventListener('contextmenu', function (e) {
// do something here...
e.preventDefault();
}, false);
/*----------- 00. Inspect Element Disable ----------*/
document.onkeydown = function (e) {
if (event.keyCode == 123) {
return false;
}
if (e.ctrlKey && e.shiftKey && e.keyCode == 'I'.charCodeAt(0)) {
return false;
}
if (e.ctrlKey && e.shiftKey && e.keyCode == 'C'.charCodeAt(0)) {
return false;
}
if (e.ctrlKey && e.shiftKey && e.keyCode == 'J'.charCodeAt(0)) {
return false;
}
if (e.ctrlKey && e.keyCode == 'U'.charCodeAt(0)) {
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment