How to disable the copy/Paste option in Blogger. If you want to disable the copy/paste option you can block it easily and you can prevent copying your valuable content without your permission.
Follow these 4 steps process Disable copy/paste & Right click option in Blogger.
- Log in to the Blogger Account Dashboard.
- Now Go to the Theme Section.
- In the Theme Section go to customize with Edit HTML.
- Copy the code below and paste it before the </body> tag.
To Disable the Selection & copy.
<script> $('body').bind('copy cut drag drop', function (e) { e.preventDefault(); }); </script>
To disable the RIght-CLick
<script> document.addEventListener('contextmenu', function (e) { e.preventDefault(); }); </script>
No comments:
Post a Comment