Back to vBulletin 4.x Template Modifications

Disable right click on your forum.
Mod Version: 1.00, by borbole

vB Version: 4.0.2 Rating: (10 votes - 5.00 average) Installs: 79
Released: 04 Mar 2010 Last Update: Never Downloads: 0
Not Supported Template Edits Re-usable Code Translations  

This script taken from dynamic drive will disable the right click on your forum for guests. As to offer some protection to your materials being stolen from your forum.

Note: This will prevent them only for the right click and copy/paste directly.

Anyway, add the following code to the very begin of the headinclude template.

Code:
<vb:if condition="$show['guest']">
<script type="text/javascript">
<!--
//Disable right mouse click Script
//By Maximus (email) w/ mods by DynamicDrive
//For full source code, visit http://www.dynamicdrive.com
var message="Right click is disabled for guests!";
///////////////////////////////////
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>
</vb:if>
To change the message shown to guests when attempting to right click at your forum, find the following code:

Code:
var message="Right click is disabled for guests!";
And change the text
Code:
Right click is disabled for guests!
with your own message.

Download

No files for download.

Similar Mods

Miscellaneous Hacks Disable Right Click on your Forum vBulletin 3.6 Add-ons
Disable Right Click On Everything vBulletin 3.6 Template Modifications

vblts.ru supports vBulletin®, 2022-2024