Skip to content

Instantly share code, notes, and snippets.

@zhabinka
Created May 10, 2017 08:13
Show Gist options
  • Save zhabinka/a4e483ae08ce7cb807525b68cc1aac3f to your computer and use it in GitHub Desktop.
Save zhabinka/a4e483ae08ce7cb807525b68cc1aac3f to your computer and use it in GitHub Desktop.
<!--Запрет контекстного меню на сайте-->
<script type="text/javascript">
document.oncontextmenu = function (){return false};
</script>
<!--Запрет выделения текста через стили без JavaScript-->
<style>
.noselect {
-moz-user-select:none;
-webkit-user-select:none;
-ms-user-select:none;
-o-user-select:none;
user-select:none
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment