Thứ Hai, 2 tháng 7, 2012

Cấm click chuột phải trên VBB 4 - Disable right click on your forum for VBB 4


Xem tại diễn đàn vBB 

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.

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

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

 

 <vb:if condition="$show['guest']">
<script type="text/javascript">
<!--


//Disable right mouse click Script
//By Maximus (maximus@nsimail.com) 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:

var message="Right click is disabled for guests!";


And change the text  

 
 with your own message.]

Không có nhận xét nào:

Đăng nhận xét