How to Avoid Blogger or Website Data Copying


If you want that no one can copy paste your valuable content from your blogger blog or worpdress site then you can use this script which prevent your content to be copied. Just add the following code to the HEAD tag of your web page:
<script type="text/JavaScript">

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>

Post a Comment

0 Comments