How To Protect Site From Copy Paste
Thursday, April 7, 2011
Protect Site From Copy Paste (gctonlinesupport.blogspot.com) To protect your site from another blogger copy and paste you can use this html code. This is effective and 100% working code. If you use this code no one can copy content from yor website or blog. I think this html code help you to free from rugh use of your content.
Use This Following Code After The First <head> Section-
<!-- 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>
0 comments:
Post a Comment