LATEST >>

Welcome Here And Thanks For Visiting. Like Us On Facebook...

EXEIdeas – Let's Your Mind Rock » Blogspot / Blogspot Tricks » How To Add Automatically Copyright When Copying Your Text In Blog?

How To Add Automatically Copyright When Copying Your Text In Blog?

In this post i am going to show you, how to show copyright text with the link when someone copy your article. This mean by when someone copy paste your blog or website article, and then try to published it, it will automatically show copyright and link source of that article. So you can prevent those who are copying your article. Some idiots are simply copy paste on their blog even they are not reading article, also hacker will be irritating to copy paste your blog article. This trick work only on blogger.Without any more text, I am going to show you the code that will help you a lot. Many of big sites are using this script as www.ehow.com etc.

How To Add Automatically Copyright When Copying Your Text In Blog?

Features:
1.) When Someone Copy Your Article, It Will Show Automatically The Blog Post URL With Your Copyright Text.
2.) Simple Coding And Easy To Use.
3.) Best Way To Promote Yourself.
4.) Quick To Load And Will Not Effect On Your SEO.
5.) Simple And Short JavaScript Code.

How To Add In Blogspot?
1.) Go To Your www.blogger.com
2.) Open Your Desire Blog.
3.) Go To Layout.
4.) Click “Add A Gadget” Where You Want To Add It.
5.) Now Scroll To “HTML-JAVASCRIPT”
6.) Click “+” Icon To Add It.
7.) Now Copy The Below Code And Paste It To There.
8.) Leave The Title Empty.
9.) Click Save, Now You Are Done.

<script type='text/javascript'>
function addLink() {
var body_element = document.getElementsByTagName('body')[0];
var selection;
selection = window.getSelection();
var pagelink = "<br/><br/> Original from: <a href='"+document.location.href+"'>"+document.location.href+"</a><br/>Copyright EXEIdeas - All Rights Reserved"; // change this if you want
var copytext = selection + pagelink;
var newdiv = document.createElement('div');
newdiv.style.position='absolute';
newdiv.style.left='-99999px';
body_element.appendChild(newdiv);
newdiv.innerHTML = copytext;
selection.selectAllChildren(newdiv);
window.setTimeout(function() {
body_element.removeChild(newdiv);
},0);
}document.oncopy = addLink;
</script>

Customization:
1.) Change The Words According To You..Original from:
Copyright EXEIdeas – All Rights Reserved

How It Will Appear?
Now When Anybody Copy The Article From Your Site And Past It Where He Want, An Extra Line Will Be Included Like This

Original from: +++YOUR POST URL+++
© 2010-2011 EXEIdeas – All Rights Reserved

Recommended For You:
How To Add Text Resizer Option For Blogger Posts?

You Like It, Please Share This Recipe With Your Friends Using...

14 Responses to “How To Add Automatically Copyright When Copying Your Text In Blog?”

  1. POWER Thaz says:

    Good post.. I’m seaching this content from last week. Thank You ..

  2. ┌●รillγ●вΘγ●┐ says:

    Nice Post 🙂 Keep Its

  3. John Xc says:

    Great stuff! I added t y blog. Am I allowed to share the code?
    John’t recent post: Blogger title/heading CSS

  4. Atif Imran says:

    that is a master piece of blogging …great

  5. wow man great work keep it up …

  6. uzAir AhMeD says:

    Thank Y0ouuu So0oooo0 Much

  7. Mike Kieffer says:

    Found this very useful. Thanks for posting it. Using it one one of my sites now.

Leave a Reply to ┌●รillγ●вΘγ●┐ Cancel reply

Your email address will not be published. Required fields are marked *