No right click allow on the page
It locks the page from users and does not let to users to copy the info on the pagethey can’t right click on the text and save anything, if they do then they will face with a message after that they will face with 100 alerts if they click twice so it’s very very safe and protects your pages
<SCRIPT language=JavaScript>
document.onmousedown=click
var times=0
var times2=10
function click() {
if ((event.button==2) || (event.button==3)) {
if (times>=1) { bye() }
alert(”No right clicking!!!!!! don’t do it again..”);
times++ } }
function bye() {
alert(”I said NO right clicking! click ok to exit LMAO!”);
bye() }
</SCRIPT>
