Thursday, October 31, 2013

BLOGS AND WEBSITES MANAGEMENT

COPY AND PASTE MANAGEMENT.

to prevent users or other bloggers from copying the content from their blog or website.
 1. Go to your blogger Dashboard and click on Layout.
   2. Then click on Add Gadget.
   3. Choose Html/Javascript From Popup Window
   4. Now Copy and Paste below code into it.

 <!--MBW Code -->
<!--mybloggersworld.com-->
<script language='JavaScript1.2'>
function disableselect(e){
return false
}
function reEnable(){
return true
}
document.onselectstart=new Function ("return false")
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
</script>

 5. Now save it and you are done disabling right click on your blog.
*****END*****

OR MANUALY
  Instructions To Follow To Stop Your Blog Posts From Being Copied :-

1--> Login to your Blogger Account.

2--> Go to Blogger Admin Page > Template > Click on Edit HTML.

3--> Ctrl + F and search <head>.

4--> Just below <head> copy and paste the codes

<!--Disable Copy And Paste-->
<script language='JavaScript1.2'>
function disableselect(e){
return false
}
function reEnable(){
return true
}
document.onselectstart=new Function (&quot;return false&quot;)
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
</script>

Its done :)

No comments: