Tips Prevent Content Theft
Blog is usually being used to express something or share knowledges and ideas to the world for some people. But there are amount of people use it to gather popularity, praise, and even earn money.
Those objectives are normal and make sense. But some bloggers find it difficult to get attention and money in the world traffic. Every people must ever out of idea. That’s normal. We often read along to find inspirations and fresh ideas. But some people do not want waste their time thinking about and digging their own inspiration. They prefer to post every interesting things they see on the net on their own site.
It may be okay if they put some links to the original post. But most of them not. So it can be called a content theft. It lose out the original publisher as him/her visitor got separated and even driven to the duplicate blog i talked about.
In my country, this behaviour is kinda popular among amateur bloggers who get obsessed with traffic and high query result. So to prevent their action, i have a simple tips using JavaScript or a Plugin.
Using Javascript
To do such thing, you have to insert little snippets of HTML code below
window.onkeypress = protection;
window.oncontextmenu = protection;
function protection(e) {
if (e.which==3 || e.which==99) {
alert("Please do not copy my content");
return false;
}
}
You can change the word “Please do not copy my content” by your own.
Using WordPress Plugin
It is a lot simpler than above. You just need to download the WordPress Plugin named Anti Plagiarism. It will works just fine and you can change the output word on the Option page afterwards. Well, you can take a look here.






JavaRoach
Your blog doesn’t seem to be using that script. I am still able to copy the content.
julian
you ‘re right
i chose not to install it
well, that’s a choice isn’t it…
anyway, if you make a copy,then give it a link,OK?:-)
Janel Teagarden
Twitter are a MUST for webmasters!
macdonnell
nice tips you have
i will implement it