Stop Copy Paste in your blog!
Nowadays crazy people often coping other websites content and images. Today I'm share a javascript code for stop copy pasting. It's a javascrpit code, so it always support blogger "Add a Gadget" > "HTML/Javascrpit" this options. Wordpress users use it on "Text" source.
Just copy this code and place this code in your blog/website sourc code.
<script language="JavaScript1.2">
function disableselect(e){
return false
}
function reEnable(){
return true
}
//if IE4+
document.onselectstart=new Function ("return false")
//if NS6
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
</script>
Don't worry, it's 100% workable.. because I'm often use this code..
0 Comments for "Stop Copy and Paste in your Website"