Search This Blog

Tuesday, August 14, 2012

DISABLE TEXT SELECTION /TEXT PROTECTION SCRIPT


This is a simple script to stop text theft from your ad. This will only protect the text in your listing, your pictures will still be vulnerable.  When someone attempts to copy and paste the text in your ad, this tool will block them from doing so.. If you watermark your pictures than you do not need to worry about image theft. You can also check out my other guides that disable right click, and completely encrypt your HTML.

COPY AND PASTE THE FOLLOWING AT THE BOTTOM OF YOUR HTML..

<script language="JavaScript1.2">

function disabletext(e){
return false
}

function reEnable(){
return true
}

//if the browser is IE4+
document.onselectstart=new Function ("return false")

//if the browser is NS6
if (window.sidebar){
document.onmousedown=disabletext
document.onclick=reEnable
}
</script>

No comments:

Post a Comment