Rabu, 15 Februari 2012 - 16:17:36 WIB
Disable right mouse click script
posted by : Administrator
Category: php - read: 33 kali

Keterangan: Ini adalah script DHTML  yang akan mencegah menu kanan default dari muncul ketika mouse diklik kanan pada halaman web. Gunakan untuk berhenti dari peselancar dengan mudah menyimpan halaman web Anda, melihat sumbernya, atau mengangkat gambar dari situs Anda. Pasti berguna untuk banyak pemilik situs ...

 Petunjuk: 

<script language=JavaScript>

<!--

 

//Disable right mouse click Script

//By Maximus (maximus@nsimail.com)

 

var message="Function Disabled!";

 

///////////////////////////////////

function clickIE4(){

if (event.button==2){

alert(message);

return false;

}

}

 

function clickNS4(e){

if (document.layers||document.getElementById&&!document.all){

if (e.which==2||e.which==3){

alert(message);

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("alert(message);return false")

 

// --> 

</script> 




0 Comment :


Add comment :
Name :
Website :
Comment
 
 (Enter the code)