Skip to content

Instantly share code, notes, and snippets.

@luislobo14rap
Created April 26, 2020 21:24
Show Gist options
  • Save luislobo14rap/acebc5a24784419679817bd97240de94 to your computer and use it in GitHub Desktop.
Save luislobo14rap/acebc5a24784419679817bd97240de94 to your computer and use it in GitHub Desktop.
disable-right-click.js
// disable-right-click.js v1
document.addEventListener('contextmenu', function(event){
event.preventDefault();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment