Protect your own article from copying!

Asked By 10 points N/A Posted on -
qa-featured

Dear,

I am maintaining a website which contained some interesting and important articles and images. Now I want to make those articles readable but could not be copied. What I want to know is, how can i protect those articles/images from copying?

SHARE
Answered By 0 points N/A #160191

Protect your own article from copying!

qa-featured

Hello,

This is the question that every people do when they find their works being stolen by others. Although it's quite impossible to
disable the features like: copying text or images, you can try out these codes which will disable the Right Click features.
And if you have pics that are your own, you can use Watermarks to prevent them from stealing.

Don't paste it in the body, it will not work if done so. Paste between the <Head></Head>:

You may use:
1. Copyscape
2. Duplichecker
3. Plagiarisma
4. Plagium
Note: These tools can be useful to help you protect your texts from being copied. I would recommend you to check in the websites (e.g. www.copyscape.com) for further details on how to use them and the benefits they provide.
—————————————————————————————————————–
For Images you can use this code:

<SCRIPT LANGUAGE="JavaScript1.1">
<!– Begin
function right(e) {
if (navigator.appName == 'Netscape' &&
(e.which == 3 || e.which == 2))
return false;
else if (navigator.appName == 'Microsoft Internet Explorer' &&
(event.button == 2 || event.button == 3)) {
alert("Sorry, you do not have permission to right click.");
return false;
}
return true;
}

document.onmousedown=right;
document.onmouseup=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (document.layers) window.captureEvents(Event.MOUSEUP);
window.onmousedown=right;
window.onmouseup=right;
// End –>
</script>

——————————————————————————————————————-

Hope you find these useful!

Related Questions