Today most of the new blog writers trying to just copy article form website and paste it in there blog as they own it. it is really hard to stop plagiarism. if you are using Google adsense plagiarism is really your enemy because if they found a lot of article same as yours they will mark it as plagiarism and it might be a reason to ban you from google adsence. so you must protect your articles from been copied.Features:
- It Will Not Allow The Visitor To Highlight Your Text.
- It Will Also Disable (CTRL+A) Function To Highlight.
- When There Is No Highlighting, No One Can Copy Your Text.
- Easy To Install And Quick To Load.
Why We Need To Disable Copying Of Text On Blog
There are many plagiarism issues, we must take care of our contents and keep eyes on our duplicates contents . One of the biggest problem created for those who are running Google adsense program. Because google will soon disable your account once they found your article too many time on different location on the web. The latest Google Panda updates also play strictly rules against the copyrighted contents, So we should must take care of our content and check out thrice a day who are trying to copy our posts and articles. So in below para i will give provide you a JavaScript codes which will help in disabling right click on blogger and WordPress So that no one cay easily grab and copying text from our posts.
How To Disable Copying Text In Blogger
How to Add Disable Copying Code in Blogger
- Go to Blogger >> Layout>>Add Gaget
- Choose “Html/Javascipt gadget”
- Copy and Paste The Following Code
/--------BLOGGERPLANET.COM —————- */
<script type="text/javascript">
var omitformtags=["input", "textarea", "select"]
omitformtags=omitformtags.join("|")
function disableselect(e){
if (omitformtags.indexOf(e.target.tagName.toLowerCase())==-1)
return false
}
function reEnable(){
return true
}
if (typeof document.onselectstart!="undefined")
document.onselectstart=new Function ("return false")
else{
document.onmousedown=disableselect
document.onmouseup=reEnable
}
</script>
How To Disable Copying Of Text In Wordpress
In the same way you can avoid plagiarism issues, in wordpress. Follow the below given steps to protect your texts from being copied inside WordPress blog.
How to Add Disable Copying Code on Wordpress
- Go to Dashboard
- Go to Widget Section >> Add Html/java script gadget
- Past the above codes inside the gadget
- You done
How To Disable Copying Text In Websites
- Go to >> Template >> Edit Template
- Now Find" <head> "( Press Ctrl+F button from keyboard to find)
- Copy and Paste The Following Code Above <head>


Post a Comment