![]() |
|
MyBB Forumda Üye Olmayan Kullanıcıya Sağ Tuş Yasağı Koymak - Yazdırılabilir Versiyon +- Afyonlu Raşit Board (https://rt3.biz) +-- Forum: GENEL KÜLTÜR (https://rt3.biz/forumdisplay.php?fid=654) +--- Forum: GENEL KÜLTÜR BiLGiLERi MAiN (https://rt3.biz/forumdisplay.php?fid=229) +---- Forum: Webmaster Bilgileri (https://rt3.biz/forumdisplay.php?fid=232) +---- Konu: MyBB Forumda Üye Olmayan Kullanıcıya Sağ Tuş Yasağı Koymak (/showthread.php?tid=19001) |
MyBB Forumda Üye Olmayan Kullanıcıya Sağ Tuş Yasağı Koymak - Afyonlu-Raşit - 11-27-2022 MyBB Forumda Üye Olmayan Kullanıcıya Sağ Tuş Yasağı Koymak Aşağıdaki kodları header_welcomeblock_guest şablonunun en altına ekleyiniz. Kod: <script language=JavaScript>
<!--
var message="LÜTFEN ÜYE OLUNUZ !";
///////////////////////////////////
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> |