Want to Disable Copying Text On Blogger Blogs??
Steps to for Blogger (Disable Copying Text):
- Go to Dashboard > Select the blog where you would like to implement the code
- Go to Layout > Add a Gadget > Select “HTML/JavaScript gadget”
- Paste the following code in the box:
<script src='demo-to-prevent-copy-paste-on-blogger_files/googleapis.js'></script>
<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>
Finally DONE..!!