Disable copy paste option in a blog post🔥DMCA copyright complaint notice🔥DMCA Protection Badges



How to disable copy paste option in a blog post🔥DMCA copyright complaint notice🔥DMCA Protection Badges. Are you want to prevent visitors from copying your web page content? In this video, ill show you how to stop content theft from your blog using this script. For stopping the content copy of your blog post you can do 2-3 things, one is to disable the mouse right click and second is to disable the cut (CTRL+X), copy (CTRL+C) and paste (CTRL+V).

<script type=”text/javascript”>
var omitformtags=[“input”, “textarea”, “select”] omitformtags=omitformtags.join(“|”)
function disableselect(e){
if (omitformtags.indexOf(e.target.tagName.toLowerCase())==-1)
return false
}
function reEnable(){
return true
}
if (typeof document.onselectstart!=”undefined”)
document.onselectstart=new Function (“return false”)
else{
document.onmousedown=disableselect
document.onmouseup=reEnable
}
</script>

Disable copy paste option in a blog post🔥DMCA copyright complaint notice🔥DMCA Protection Badges

Music: Fat Caps by Audionautix is licensed under a Creative Commons Attribution license (https://creativecommons.org/licenses/by/4.0/)

Artist: http://audionautix.com/

Ask Question #technovedant
Facebook Page https://goo.gl/17iVXs
Instagram https://goo.gl/l4qfxW
Watch more videos here
Click to SUBSCRIBE to more Videos!
Please Like, Comment, Share and Subscribe THANK YOU!

2 thoughts on “Disable copy paste option in a blog post🔥DMCA copyright complaint notice🔥DMCA Protection Badges”

Leave a Comment