ostroda1981
Постоялец
- Регистрация
- 12 Ноя 2017
- Сообщения
- 63
- Реакции
- 22
blocks rightclick button : dont need plugins
add this code to head.php
<script language="Javascript1.2">
// Set the message for the alert box
am = "TEXT - ALLERTS !!!! CHANGE THIS";
// do not edit below this line
// ===========================
bV = parseInt(navigator.appVersion)
bNS = navigator.appName=="Netscape"
bIE = navigator.appName=="Microsoft Internet Explorer"
function nrc(e) {
if (bNS && e.which > 1){
alert(am)
return false
} else if (bIE && (event.button >1)) {
alert(am)
return false;
}
}
document.onmousedown = nrc;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (bNS && bV<5) window.onmousedown = nrc;
</script>
add this code to head.php
<script language="Javascript1.2">
// Set the message for the alert box
am = "TEXT - ALLERTS !!!! CHANGE THIS";
// do not edit below this line
// ===========================
bV = parseInt(navigator.appVersion)
bNS = navigator.appName=="Netscape"
bIE = navigator.appName=="Microsoft Internet Explorer"
function nrc(e) {
if (bNS && e.which > 1){
alert(am)
return false
} else if (bIE && (event.button >1)) {
alert(am)
return false;
}
}
document.onmousedown = nrc;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (bNS && bV<5) window.onmousedown = nrc;
</script>