Page 1 of 1
Forum

Welcome to the Tweaking4All community forums!
When participating, please keep the Forum Rules in mind!

Topics for particular software or systems: Start your topic link with the name of the application or system.
For example “MacOS X – Your question“, or “MS Word – Your Tip or Trick“.

Please note that switching to another language when reading a post will not bring you to the same post, in Dutch, as there is no translation for that post!



Disable right-click...
 
Share:
Notifications
Clear all

[Solved] Disable right-click (i.e. disable context menu)

1 Posts
1 Users
0 Reactions
2,450 Views
 Hans
(@hans)
Famed Member Admin
Joined: 12 years ago
Posts: 2859
Topic starter  

Sometimes you'd like to prevent users from right clicking elements or maybe even your entire page.
There are a lot of tricks out there, JavaScript included, but I really like this one. It's simple, and works for most modern browsers. 

<div  oncontextmenu="return false">
blabla
</div>

or for the entire page:

<body oncontextmenu="return false">

The beauty is that it can also be used to call a JavaScript function, to replace the context menu.

<div oncontextmenu="myFunction()">
...
<script>
function myFunction() {
    alert("You right clicked!");
}
</script>

   
ReplyQuote
Share: