Friday, September 24
MAKE YOUR BLOG SECURE FROM CONTENT THIEVES: DISABLE COPY-PASTE AND SELECTION OPTIONS
Hey there,So do you have a blog? I bet you do. I mean, who doesn't? Everybody blogs these days. And why not to? We need to squeeze in each and every benefits technology has given us, and blogging is undoubtedly one of them-a great way to share information, I must say. So you have a blog, but do you have a original blog? By that I mean, do you have a blog with the contents originally written by you? Yes, it really is a pain to write contents on your own. But as we all know(and some of us have even experienced, I guess), there are content thieves all around. What content thieves basically do is they steal our valuable content and put it into their blogs and earn visits AND revenue. So today, I will be teaching you a way to secure your blog by disabling the copy paste function.
To disable the copy paste function first go to your blog's design menu and go the Edit HTML, like shown in the picture below. ( don't know how it works on WordPress or other platforms, apologies )

After you click on the Edit HTML menu, a HUGE codebox is going to appear with all those CSS codings that make up your blog page. You don't need to go into too much of detail. To the point, after the box appears, you will to find the <head> tag and paste the code below just after the <head> tag.
/* Copy-Paste and Selection Disabler
by Sunny
*/
< 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>
by Sunny
*/
< 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>
yes, I know you cannot copy the code. Download it from here.
Make sure you paste it just after <head> the tag or just before the </head> tag, or things are going to mess up. After you make sure you have placed the code in its right place, click the save button in the HTML editor and you're done. Piece of cake. And your content is secure.
Congratulations.
Here's a demo of the feature on n00bbook itself.