top of page
bottom of page
// Disable right-click
document.addEventListener('contextmenu', event => event.preventDefault());
// Disable common shortcuts (Ctrl+S, Ctrl+U, Ctrl+C, Ctrl+Shift+I)
document.onkeydown = function(e) {
if (e.ctrlKey && (e.key === 's' || e.key === 'u' || e.key === 'c' || e.key === 'i')) {
e.preventDefault();
return false;
}
};