1


Disable Dragging in BloggerDisabling Drag option can come handy when you want to protect your unique work from the robotic copiers and others whom you do not trust. So with this simple script you can disable dragging that is person will not able to drag text and images on your website has giving no chance for copying well right is is still enabled and he may get some alternate way to copy out the content but this trick protect in a great way and many of our readers may have seen this thing happen on H few days ago.
Follow the below steps to disable dragging in blogger website .:
1. Open www.Blogger.com

2. Go to design than edit HTML

3. The main step is to backup your template in case mess it up you should have a chance to recover your work.

4. Now just press CTRL + F to open the search feature and search for </head> tag

5. now paste the below script right above the </head> tag
<script type='text/javascript'>
    var omitformtags=[&quot;input&quot;, &quot;textarea&quot;, &quot;select&quot;]
    omitformtags=omitformtags.join(&quot;|&quot;)
    function disableselect(e){
    if (omitformtags.indexOf(e.target.tagName.toLowerCase())==-1)
    return false
    }
    function reEnable(){
    return true
    }
    if (typeof document.onselectstart!=&quot;undefined&quot;)
    document.onselectstart=new Function (&quot;return false&quot;)
    else{
    document.onmousedown=disableselect
    document.onmouseup=reEnable
    }
    </script>
6. Now just click save template and click view Blog have FUN Dragging oops its been disabled Muahahahh !!!!!!!!!! Now just say F*** Draggers…

Post a Comment

 
Top