content thieves
Posted: Fri Sep 04, 2009 12:23 am
Hi
I spend around three hours a day writing content for my site only to find that some website owners copy the content, this happens regularly and usually involves me having to spend a couple of hours per site collecting all the links so I can raise a DMCA. Recently someone suggested that I use the following code so I did , and it works by preventing people copying from the screen. Happily thinking everything was a-okay until I got a message in my shoutbox 'dumb moth&&^%& i use noscript i can copy if i want'. Which lead me here.
I understand they can view the source but most of the time I don't they'll bother. Is it possible you can somehow exclude this bit of code from being blocked from noscript? . Thanks
I spend around three hours a day writing content for my site only to find that some website owners copy the content, this happens regularly and usually involves me having to spend a couple of hours per site collecting all the links so I can raise a DMCA. Recently someone suggested that I use the following code so I did , and it works by preventing people copying from the screen. Happily thinking everything was a-okay until I got a message in my shoutbox 'dumb moth&&^%& i use noscript i can copy if i want'. Which lead me here.
I understand they can view the source but most of the time I don't they'll bother. Is it possible you can somehow exclude this bit of code from being blocked from noscript? . Thanks
Code: Select all
<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>