My dear friends, Do you have a blog or site in blogger.com and need to secure your substance by incapacitating content choice From coping and pasting?
today In this article, I will impart to you how you can incapacitate duplicate/glue of text and shield your substance from coping and paste your content.
This strategy, we will utilize the unadulterated html code. along these lines, you don't have to stress over the speed execution. You can likewise reject certain component and client can duplicate content from that space as it were.
There are a few different techniques to incapacitate duplicate glue in the site which utilizes Javascript. You can likewise execute this stunt.
Note: that this strategy won't shield the site 100% from taking content as some high level clients can undoubtedly separate content from source code. Yet, It can shield your substance from typical clients.
How to cripple duplicate glue of content in Blogger from taking?
Tell us how to save the substance of your blog from being duplicate stuck or taking In straightforward advances follow.
Cripple text choice utilizing html/Javascript Code
1. To shield your substance in blogger from taking, first duplicate the HTML/javascript code given beneath
To Protect from stealing your blogger content you have to copy this code and add it in your
<head>
Like this you have to do.
<script type="text/JavaScript">
//courtesy of pixelnatures.in
function killCopy(e){
return false
}
function reEnable(){
return true
}
document.onselectstart=new Function ("return false")
if (window.sidebar){
document.onmousedown=killCopy
document.onclick=reEnable
}
Now when you added the code in your blogger <head>
Quickly save it and you good to go my firends.
</script>