Quantcast
Channel: MyBB Community Forums - Tutorials
Viewing all articles
Browse latest Browse all 690

How to disable right clicking

$
0
0
Go to your ACP -> Templates & Styles -> Templates -> The theme name you want to add this to -> Index Page Templates -> index

Now add the following code above </head>:
Code:
<script language="javascript">
    document.onmousedown=disableclick;
    status="Sorry my theme is to be paid for and not ripped! Please try again another time! Good Bye!";
    function disableclick(event)
    {
      if(event.button==2)
       {
         alert(status);
         return false;    
       }
    }
    </script>

Change the status to whatever you want it to say now find the <body> tag and replace it with the following:
Code:
<body oncontextmenu='return false'>

Enjoy & Happy Coding!

Viewing all articles
Browse latest Browse all 690

Trending Articles