Insert kode di bawah ini di antara tag <head> </head>
<script language="javascript">
document.onmousedown=disableclick;
status="Right Click Disabled";
Function disableclick(event)
{
if(event.button==2)
{
alert(status);
return false;
}
}
</script>
Setelah itu insert code : oncontextmenu="return false" Di tag <body>
sehingga tag body menjadi tag body dibawah ini :
<body oncontextmenu="return false">
Contoh full script :
<script language="javascript">
document.onmousedown=disableclick;
status="Right Click Disabled";
Function disableclick(event)
{
if(event.button==2)
{
alert(status);
return false;
}
}
</script>
</head>
<body oncontextmenu="return false">
Post a Comment