August 12, 2011

How To Stop Copy Paste Function to Your Blogger


How To Stop Copy Paste Function to Your Blogger



1.Login to your blogger dashboard--> Design- -> Edit HTML

2.Scroll down to where you see </head> tag .

3.Copy below code and paste it just After </head> tag

<!--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>

4.Now Click on Save Template,You are done..

Cheers

No comments:

Post a Comment