Showing posts with label Plagiarize. Show all posts
Showing posts with label Plagiarize. Show all posts

How To Disable right click in the blogger?

This post explains how to disable right click on blogger(blogspot) or any other webpage using a html(javascript) code.
It is so annoying if someone copies(thefts) your blog posts,articles,images and another kind of information owned by you saying that they are the original owners of the content.
But,I think 'disabling right click' is not the right solution for that.
Most people come to your site to read information and very small percentage of people come to your site to steal your work,images,etc.So,most people feel it insulting and I think it's very unprofessional thing to do

If you want to protect your images,my suggestion is to add a Watermark(logo) of your sitename,or your name on the images,pictures,etc.

Note:Using this javascript code,you only disable the right click by warning the visitors that the content is copyrighted.

This is the code for this.

<SCRIPT language=JavaScript>
<!-- http://www.spacegun.co.uk -->
var message = "function disabled";
function rtclickcheck(keyp){ if (navigator.appName == "Netscape" && keyp.which == 3){ alert(message); return false; }
if (navigator.appVersion.indexOf("MSIE") != -1 && event.button == 2) { alert(message); return false; } }
document.onmousedown = rtclickcheck;
</SCRIPT>

Where to paste it in blogger ?

Sign in to your blogger dashboad>layout>Add a Pageelement>html/javascript and paste the above javascript code and Save the changes.

How it works?

If you right click on the webpage,a message will pop up on screen saying "function disabled".If you want to change the message to you own one like "sorry....the work is copyrighted" or something like that,replace the "funtion disabled" text with your own message in the Javascript code.

How do you protect yourself? And, what can you do if someone steals your content?

If you have been blogging for any length of time then you have probably come across a site that has blatantly ripped off your material and posted it on their own site without credit in the form of a link to you. This is copyright infringement and has become a common occurrence on the Web.

The first thing you should know is that you don't have to register your material for it to be copyrighted. Virtually anything produced be it written, drawn, photographed or played ala music is protected by copyright law. This doesn't mean you are safe though as many people don't know or worse don't care that copyright applies to the internet as well as the usual mediums.

To protect yourself you can use a service like

copyscape.com.

This service is free for up to 10 pages a month and offers a paid service if you are a frequent victim of content theft.

I ran a couple of my pages this morning and you guessed it... one site is basically stealing most of my content for their site.

Protect Your Blog From Plagiarize (Copy Paste)

May be you will be angry if your articel shown in other blog unexpectedly, moreover it without inserting the resource. I'll show you how to protect your blog from theif. But this trcik is pointed for small thief because it unusefull for expert thief. With this trick, the thief will unable to select your articel and unable to right click in your blog. But if you don't care about plagiarize, you will don't need this trick. Ok lets begin.

Go to your blog setting then chose "Template --> Edit HTML". Find this code <body> then replace with this code
<body onmousedown="return false" oncontextmenu="return false" onselectstart="return false">

Now your blog will be disable selecting and righ click, but the thief can still steal your articel by select "views --> page source" menu from their browser or by pressing "Ctrl + u", they can see your source code and can copy the articel from it. To deceive this, put your mouce cursor before this code <head> then press "enter" button many times, may be about 100 times the save your editting . Now if they press "Ctrl + u" they will only see a litle codes, he..he..

But remember this trick is only work for a fool thieves, for an expert thieves is unusable.
I don't use it into my blog because there are many script that have to be copied by readers.