top of page
bottom of page
document.addEventListener('keydown', function(e) {
// Block Ctrl+A (Select All)
if (e.ctrlKey && e.keyCode == 65) {
e.preventDefault(); // Prevent the default action of selecting all text
return false;
}
// Block Ctrl+C (Copy)
if (e.ctrlKey && e.keyCode == 67) {
e.preventDefault(); // Prevent the default action of copying text
return false;
}
});