disable right click

nsgaming

Active member
Registered
Joined
Mar 15, 2021
Messages
41
Points
28

Reputation:

Guys is any way to disable right click and f12 options.i tried add-on but its not working on 2.2.5 version
 

ENXF NET

Administrator
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P.S Member
S.V.I.P Member
V.I.P Member
Collaborate
Registered
Joined
Nov 13, 2018
Messages
19,151
Points
823

Reputation:

Guys is any way to disable right click and f12 options.i tried add-on but its not working on 2.2.5 version
nsgamingTemplate > page_container, Paste this code at the end
Code:
<xf:if is="!{$xf.visitor.user_id}">
<script type="text/javascript">
<!--

//Disable right mouse click Script
//By Maximus ([email protected]) w/ mods by DynamicDrive
//For full source code, visit http://www.dynamicdrive.com

var message="You need to login to right click";

///////////////////////////////////
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>
</xf:if>
 
Top