Disable Right Click on your blog with JQuery | Prevent copying content from your blog

Do you want that no one can copy content from your blog? You write valuable content and
work hard to write your blog and someone can easily steal your words. This can harm your search engine reputation too. So you need a solution to protect your contents on your blog. Well, you can do it using a simple JQuery. This will disable right mouse clicking on your blog page, so viewers will not be able to copy text or save your webpage. Just follow the below steps and you will know how to do that.

Step 1: Login to your blogger Dashboard.
Step 2: Go to Template and Click Edit HTML and choose to Proceed.
Step 3: Scroll down to where you see &lt/head> tag . Alternatively press Ctrl+f and type &lt/head> to find the tag. Step 4: Now copy below code and paste it just before the &lt/head> tag .
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js' type='text/javascript'/>

<script type='text/javascript'>
//<![CDATA[

$(document).ready(function(){
$(document).bind("contextmenu",function(e){
    return false;
});
});

//]]>
</script>
Step 5: Hit 'Save' to save your template. Now you are done. Right clicking will be disabled in your blog page. Check yourself. Enjoy blogging.