Skip to content

Instantly share code, notes, and snippets.

@met4000
Created June 7, 2016 04:50
Show Gist options
  • Save met4000/63b82d993c941ef5b02ca1b5b87c85fc to your computer and use it in GitHub Desktop.
Save met4000/63b82d993c941ef5b02ca1b5b87c85fc to your computer and use it in GitHub Desktop.
Javascript Disable Rightclick
document.onmousedown = function(){};
status = "Right Click Disabled";
document.body.setAttribute("oncontextmenu", "return false");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment