MyBB Community Forums

Full Version: were i can get the No Right Click pluguin? Help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello
were i can get the No Right Click pluguin?
Sad cause my members are stelling my website info and past it on their websites

i try to find the pluguin but i cant find it Sad

can you help me?
if you have it can you share it wit me?
Thank You
add this code in your acp->templates&styles->templates->**YourTemplate***->ungrouped templates->headerinclude
and add this script somewhere

<script language=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="Function Disabled!";

///////////////////////////////////
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>
i will try and Thank You
Hey It WORK THANK YOU!!!!!!!!!
If you think that's going to stop people stealing your content, it won't.

All they need to do is disable javascript, and they can still get your content by viewing the page source.
Also they could just highlight and hit ctrl+c and still copy it so disabling right click will only stop the non techies, not the tech savy that will be certain to find a way around it.