Saturday 20 August 2011

Disable Copy & Paste from your blog


Thinking of avoiding ppl from copying your blog's entry??
Try this.

Go to Design - Edit HTML - Cari (CTRL+F)  tag <head>
copy the cide below.


<!-- Disable Copy and Paste-->
<script language='JavaScript1.2'>
function disableselect(e){
return false
}
function reEnable(){
return true
}
document.onselectstart=new Function (&quot;return false&quot;)
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
</script>

Paste the code below this <head> tag.

Save Templates. Done.

No comments:

Related Posts Plugin for WordPress, Blogger...