На многих популярных сайтах больщинство плохих людей aka воров наглым образом копируют статьи/тексты итд. Избавиться от этого можно тем, что просто запретить браузеру выделять контент. Для этого задаем body какой-нибудь идентификатор, в нашем случае это будет noselect, следовательно меняем
на:
Code
<body id="noselect">
И вставляйте этот js в сам этот body:
Code
<script type="text/javascript">
function disableSelection(target){
if (typeof target.onselectstart!="undefined")
target.onselectstart=function(){return false}
else if (typeof target.style.MozUserSelect!="undefined")
target.style.MozUserSelect="none"
else target.onmousedown=function(){return false}
target.style.cursor = "default"
}
if (document.getElementById("noselect")) {
disableSelection(document.getElementById("noselect"));
}
</script>