- Letakan script dibawah ini di antara <head>................</head>
<script type="text/javascript">
//================= Script Mencegah isi halaman web agar tidak bisa dicopy
function clickIE4(){
if (event.button == 2){return false;}}
function clickNS4(e){
if (document.layers || document.getElementById && !document.all){
if (e.which == 2 || e.which == 3){return false;}}}
if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}else if (document.all && !document.getElementById){
document.onmousedown = clickIE4;}
document.oncontextmenu = new Function("return false")
function non_aktifkan_seleksi(obj){
if (typeof obj.onselectstart != "undefined")
obj.onselectstart=function(){return false}
else if (typeof obj.style.MozUserSelect != "undefined")
obj.style.MozUserSelect="none";
else
obj.onmousedown=function(){return false}
obj.style.cursor = "default";
}
//========================
//================= Script Mencegah isi halaman web agar tidak bisa dicopy
function clickIE4(){
if (event.button == 2){return false;}}
function clickNS4(e){
if (document.layers || document.getElementById && !document.all){
if (e.which == 2 || e.which == 3){return false;}}}
if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}else if (document.all && !document.getElementById){
document.onmousedown = clickIE4;}
document.oncontextmenu = new Function("return false")
function non_aktifkan_seleksi(obj){
if (typeof obj.onselectstart != "undefined")
obj.onselectstart=function(){return false}
else if (typeof obj.style.MozUserSelect != "undefined")
obj.style.MozUserSelect="none";
else
obj.onmousedown=function(){return false}
obj.style.cursor = "default";
}
//========================
<script type="text/javascript">
non_aktifkan_seleksi(document.getElementById("tidak_bisa_copy"));
</script>
3. di dalam <body> tambahkan code id="tidak_bisa_copy">non_aktifkan_seleksi(document.getElementById("tidak_bisa_copy"));
</script>
sehingga menjadi
<body id="tidak_bisa_copy">
Sehingga, apabila seseorang akan mengcopy artikel di web anda tidak bisa karena klik kanan tidak berfungsi . ini contoh source code disini
No comments :
Post a Comment