Prevent posts in your blog from being copied..!!!


Hey Readers,
I am back with another trick for blogger. Nowadays many new bloggers have started copying data from other blogs and pasting into their blogs. So if you want to prevent your data from being copied this trick will be very useful for you. Follow the steps given below and prevent your data from being copied ↓↓
  • Go to your Blog Dashboard 
  • Now go to Layout Tab
  • Click on Add a Gadget
  • Now search Html/Javascript in the Gadgets list.
  • Select Html/Javascript and paste the code given below to Html/Javascript Gadget Box and press Enter.
<!--Disable Copy And Paste-->
<script language='JavaScript1.2'>
function disableselect(e){
return false
}
function reEnable(){
return true
}
document.onselectstart=new Function ("return false")
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
</script>

This trick is 100% working and Personally tested my me..!!