composing a good post & a total stranger comes to hijack (copy & paste your work) into his site without acknowledging your efforts. Sometimes, i can help but feel bad...
Ok, friends.. you can use this tip i am about to show you to guide your post.
The major trick you can use to protect your content from copy and paste bloggers is to disable highlight function.
How To Disable Highlight Function:
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>
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>
Now save your template.
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.
<script language='JavaScript1.2'>
function disableselect(e){
return false
}
function reEnable(){
return true
}
document.onselectstart=new Function ("return false")
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
</script>
function disableselect(e){
return false
}
function reEnable(){
return true
}
document.onselectstart=new Function ("return false")
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
</script>
Click on the Save button and you are done.
Now your blog content is now safe from copy and paste bloggers.
.
0 comments:
Post a Comment