How To Disable Right Click+Hightlight Copy Paste
Hello RaGEZONE!
This code can save your website from theft or copy and paste you just need to copy all the code below and paste after </ head> in index.php
Thank you
PHP Code:
<SCRIPT LANGUAGE="JavaScript" type="text/javascript" >
<!--
document.oncontextmenu = function() {return false}
if (document.layers) {
window.captureEvents(Event.MOUSEDOWN);
window.onmousedown = function(e) {
if (e.target==document) return false;
}
}
else {
document.onmousedown = function() {return false}
}
//-->
</SCRIPT>
Re: How To Disable Right Click+Hightlight Copy Paste
Re: How To Disable Right Click+Hightlight Copy Paste
wat about ctrl+u? and the options?
Re: How To Disable Right Click+Hightlight Copy Paste
Clouns, whats the point of this crap i can do ctr+v/c and finnaly views source!
useless and waste of time
Re: How To Disable Right Click+Hightlight Copy Paste
simply
PHP Code:
<body oncopy="return false" onselectstart="return false" oncontextmenu="return false" ondragstart="return false">