Skip to content

Instantly share code, notes, and snippets.

@rwkyyy
Created August 5, 2020 13:10
Show Gist options
  • Select an option

  • Save rwkyyy/52f6e65f06a6862e745d0399a610e71b to your computer and use it in GitHub Desktop.

Select an option

Save rwkyyy/52f6e65f06a6862e745d0399a610e71b to your computer and use it in GitHub Desktop.
disable right click
//for js
$(document).bind("contextmenu", function (e) {
return false;
});
//for wp
jQuery(document).bind("contextmenu", function (e) {
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment