Disable right click on your forum.
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> Code:
var message="Right click is disabled for guests!"; Code:
Right click is disabled for guests! 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 |