Skip to content

Instantly share code, notes, and snippets.

@zheeeng
Created June 28, 2019 09:44
Show Gist options
  • Save zheeeng/32da0224528e04af6ba187a0832eb9b9 to your computer and use it in GitHub Desktop.
Save zheeeng/32da0224528e04af6ba187a0832eb9b9 to your computer and use it in GitHub Desktop.
Disable right click
['contextmenu', 'selectstart', 'copy'].forEach(function(ev){
document.addEventListener(ev, function(event){
return event.returnValue = false
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment