Tips, Tricks And Computer Info..

About

Movie Category 1

Latest Posts

[3] [recent] [recent] [Lastest Posts]

Subscribe Us

Template Information

Test Footer 2

Movie Category 3

Theme images by hdoddema. Powered by Blogger.

All Movies Collection

Movies of The Week

Recent

[7][recent][recent-right]

Popular Posts

Join This Site On Google Friend

FAQs

[1] [FAQs] [one] [FAQs]

tech

[6] [techbuzz] [slider-left] [Slider Right]

Movie Category 5

techbuzz

[2] [Techbuzz] [one] [Technology]

Movie Category 4

Latest Posts

[5] [dp] [slider-top-big] [Slider Top]
You are here: Home / , How to prevent anyone from copying your web content?

How to prevent anyone from copying your web content?

| No comment
If you own a blog or a website and you want to prevent other bloggers from copying the content from your blog then this article is for you. To prevent such users from copying content from your blog i will show you Javascript Trick to disable right click on your blog. So lets get started.



How To Disable Right Click On Your Blog ?

 1. Got to your blogger Dashboard and then Click on Layout.

 2. Now Click on Add Gadget and select Html/Javascript.

 3. Now paste code given below in the pop up window.

<!--MBW Code-->
<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>
<!--Code End http://nqaze.blogspot.in>

 4. Save it and done. Now users will not be able to right click on your website.