Tekil Mesaj gösterimi
Alt 15 - 06 - 2015, 21:18   #1 (permalink)
Çevrimiçi
aSpeNDos Konuyu Baslatan
Kullanıcıların profil bilgileri ziyaretçilere kapalı
Vbulletin Sağ Tuş Engelleme Yasağı


vBulletin sisteminde sağ tuş yasağı için gerekli bu kodları header şablonuna eklemeniz yeterlidir.

Kod:
<script type="text/javascript">
<!--
var error="Sağ tuş kapalıdır!";


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


// --> 
</script>
  Alıntı ile Cevapla