Skip to content

Instantly share code, notes, and snippets.

@shameersn
Created January 16, 2016 05:07
Show Gist options
  • Select an option

  • Save shameersn/4317d7dc3d30bbb2c75a to your computer and use it in GitHub Desktop.

Select an option

Save shameersn/4317d7dc3d30bbb2c75a to your computer and use it in GitHub Desktop.
How to prevent Right Click option using jquery and text selection
body {
-webkit-user-select: none;
-moz-user-select: -moz-none;
-ms-user-select: none;
user-select: none;
}
$(document).on("contextmenu", function (event) { event.preventDefault(); });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment