Kamis, 04 Januari 2018

How to Disable Right Click and Copy Paste

Disable Right Click and Copy Paste

If you want to prevent your website or blog contents code,text or images from copy/paste.Also you don't want to show your codes to inspect in browsers that this script is for you. This will not show any pop up and not allow to enable right click. How to apply follow these steps:


1: Go to Blogger.
2: Layout
3: Add Gadget
4: Select HTML/JavaScript
5: Copy this code and paste in HTML/JavaScript
6: Save and check on Website
<script type="text/javascript">
$(document).ready(function () {
    //Disable cut copy paste
    $(&#39;body&#39;).bind(&#39;cut copy paste&#39;, function (e) {
        e.preventDefault();
    });
 
    //Disable mouse right click
    $(&quot;body&quot;).on(&quot;contextmenu&quot;,function(e){
        return false;
    });
});
</script>

Top Search 

javascript disable copy paste in textbox
how to disable copy and paste on website
disable copy paste windows 7
how to enable copy paste in html
protect website content from being copied
how to enable copy paste in textbox in jquery
disable right click javascript
how to disable right click in html using javascript
javascript disable copy paste in textbox
how to enable copy paste in html
protect website content from being copied
disable copy paste windows 7
disable right click javascript
how to disable right click in html using javascript
disable right click jquery
how to disable right click in php

Tidak ada komentar:

Posting Komentar