• About
  • Contact

Things For Computers

  • Home
  • Earn Money
    • Free Lance
    • 13 Trusted Sites to Make Money
  • Tricks
    • Faceook Tricks
    • Computer Tricks
    • Internet Tricks
    • Blogger Tricks
    • Chrome Tricks
    • Firefox Tricks
    • Funny Tricks
    • Google Tricks
    • Hacking Tricks
    • Notepad Tricks
    • Virus Tricks
    • Youtube Tricks
    • Whatsup Tricks
    • Amazon Tricks
    • Alexa Tricks
  • Free Internet
    • Mobilink Tricks
    • Zong Tricks
    • Telenor Tricks
    • Ufone Tricks
    • Warid Tricks
    • Airtel Tricks
  • Softwares
    • Latest Softwares
    • Utility Softwares
    • Computer Software
  • Blogging
    • Blogging Tips
    • Blogger Tricks
    • Blogger Widgets
    • Blogger Templates
Home » Blogging » Tricks » Disable Right Click in Blogger -

Disable Right Click in Blogger -

Hasan
Add Comment
Blogging, Tricks

Have you noticed , that some websites do not allow their visitors using right mouse click while the pointers is on blog area. This option is useful for the site and the blog owner's , who want to minimize the possibilities of the content direct copying to other posts.

Follow These Steps : 

1) Go to Dash Board > Layout > Add Gadget > Html / JavaScript.

2) Copy the Code From Below and paste in it that blogger widget.

3) Save the Html / JavaScript And view your blog.



<script language=javascript>
<!--

//Disable right mouse click Script
//By Being Geeks
//For full source code, visit http://things4computers.blogspot.com/

var message="Function Disabled - Get Back To Things 4 Computers";

///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("alert(message);return false")

// -->
</script>




Tweet
Disable Right Click in Blogger - Title : Disable Right Click in Blogger -
Description : Have you noticed , that some websites do not allow their visitors using right mouse click while the pointers is on blog area. This option...
Rating : 5

0 Response to "Disable Right Click in Blogger -"

← Newer Post Older Post → Home
Subscribe to: Post Comments (Atom)

Back to top!