Skip to content

Instantly share code, notes, and snippets.

@ali-master
Created January 14, 2025 21:06
Show Gist options
  • Save ali-master/a800c44832bfc11d687fc3f2ed5bf75e to your computer and use it in GitHub Desktop.
Save ali-master/a800c44832bfc11d687fc3f2ed5bf75e to your computer and use it in GitHub Desktop.
Disable Right-Click Using JavaScript
document.addEventListener("contextmenu", function(event) {
event.preventDefault();
alert("Right-click is disabled on this website!");
});
// Disable Right-Click for Specific Elements Only
document.getElementById("protected-content").addEventListener("contextmenu", function(event) {
event.preventDefault();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment