Code hay
Chống copy bài viết trên website
Áp dụng: Chống copy vài viết với các website SEO tin tức.
Gắn vào thẻ Header, có thể check gắn ở script header của theme.
<style> body{ -webkit-touch-callout: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none; } </style> <script type=”text/JavaScript”> function killCopy(e){ return false } function reEnable(){ return true } document.onselectstart=new Function (“return false”) if (window.sidebar){ document.onmousedown=killCopy document.onclick=reEnable } </script>