How to Disable Right Click in website/blog latest 2012


1. Log in to your blogger account
2. Go to Design>>>Page Elements>>>Add Gadget
3. Choose HTML/Java Script
4. Copy and paste the code below



<SCRIPT language=JavaScript>
<!-- http://www.spacegun.co.uk -->
var message = "Don't Copy"; 
function rtclickcheck(keyp){ if (navigator.appName == "Netscape" && keyp.which == 3){ alert(message); return false; } 
if (navigator.appVersion.indexOf("MSIE") != -1 && event.button == 2) { alert(message); return false; } } 
document.onmousedown = rtclickcheck;
</SCRIPT>

No comments:

Post a Comment