Did you know that you can disable copy paste function on your webpages/blogs? Of course you did, that's why you are here, to see how it's done. 
tip101tricks.blogspot.com/images

This little JavaScript snippet will prevent someone from highlighting your text and using the copy function to copy it and rip it off. It also prevents them from using Ctrl+A to select all text, or using right click menu to select all. 

Of course, since it is a javascript, it doesn't work if the visitor has disabled javaScript or has a browser that doesn't support JavaScript. That isn't many users, but anyone with some experience would know a way around this trick. It will stop most new users though, and at least make it harder for everyone else. That may be all discouragement they need to move on to easier picking.


How To Disable Copy Paste In Blogger

 Trick is very simple to follow, here are the steps

  1. Go to Blogger>>Layout>>Add a gadget
  2. Click on html/JavaScript code
  3. Paste the code below in the box.
<script type="text/JavaScript">
//by Tips&101Tricks
function killCopy(e){
return false
}
function reEnable(){
return true
}
document.onselectstart=new Function ("return false")
if (window.sidebar) {
document.onmousedown=killCopy
document.onclick=reEnable
}
</script>



After Pasting the above click on save button and You're Done!!

Note: By Combining this no-copy paste code with a right-click script you'll add another level of difficulty for those trying to steal your text. Be warned though, a savvy and determined user can still figure out ways around all the protection, nothing is safe on the internet.

Fortunately, not many people want to spend that much time at it when it's much easier to go steal from someone else. 

Script May not work in some Browsers like IE. 


Axact

Axact

Vestibulum bibendum felis sit amet dolor auctor molestie. In dignissim eget nibh id dapibus. Fusce et suscipit orci. Aliquam sit amet urna lorem. Duis eu imperdiet nunc, non imperdiet libero.

Post A Comment:

0 comments: