Created
May 10, 2017 08:13
-
-
Save zhabinka/a4e483ae08ce7cb807525b68cc1aac3f to your computer and use it in GitHub Desktop.
Защита текста на сайте от копирования
http://web-grafika.pro/web-dizajn/uroki-html-i-css-elementy-saita/zashhita-ot-kopirovaniya-teksta-na-sajte.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!--Запрет контекстного меню на сайте--> | |
<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