How To Disable Highlight Function |
How To Disable Highlight Function
How To Disable Highlight Function
Now the major trick you can use to protect your content from copy and paste bloggers is to disable highlight function.I also shared a tutorial on How to add an image next to Blogger Post Title,which you can also use it to protect your blog images
Go to your dashboard
Click Template > Edit HTML > Proceed
Use ctrl F to find </head> and paste the following code above </head>
<script type='text/javascript'>
if (typeof document.onselectstart!="undefined") {
document.onselectstart=new Function ("return false");
}
else{
document.onmousedown=new Function ("return false");
document.onmouseup=new Function ("return true");
}
</script>
Alternative
You can also add it, using this second option:
Go to Layout > Add a Gadget > HTML/JavaScript
Paste the following code in the content box leaving the title box empty
<!--Disable Highlighting by www.mybloggertricks.org-->
<style type='text/css'>
0 comments:
Post a Comment