How To Disable Right Click On Blogger, Copy Protection, HTML Script and Process
How To Disable Right Click On Blogger |
Process:
- Login your blogger account
- Go to Layout Option
- Select Add a Gadget
- Scroll down and select HTML/ JavaScript
- Now Paste the below code and save
- You done, check it out
<script type=”text/javascript”>
var omitformtags=[“input”, “textarea”, “select”]
omitformtags=omitformtags.join(“|”)
function disableselect(e){
if (omitformtags.indexOf(e.target.tagName.toLowerCase())==-1)
return false
}
function reEnable(){
return true
}
if (typeof document.onselectstart!=”undefined”)
document.onselectstart=new Function (“return false”)
else{
document.onmousedown=disableselect
document.onmouseup=reEnable
}
</script>
Do not forget to comment, and share Thank you…Enjoy
No comments:
Post a Comment