Code chống copy
Các bạn chỉ cần copy đoạn code sau và dán vào trước thẻ head:
<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>
Code chống click chuột phải:
các bạn cũng làm tương tự copy đoạn code sau và dán vào trước thẻ <head>
Xem thêm tại:Code chống copy và click chuột phải