Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to block the standard context menus, and handle the right-click event manually.

How is this done?

share|improve this question
3  
possible duplicate of How do I disable right click on my web page . – systempuntoout Nov 20 '10 at 22:54
4  
@systempuntoout No, this is a different question. The other question wants to "block right click without using javascript", this question simply wants to extend it with functionality (a lot of sites do this without annoying users successfully, e.g. Google docs) – bobobobo Nov 20 '10 at 22:57
1  
@Bobobobo: That's right. I am aiming for UI extension, not restriction. – Giffyguy Nov 20 '10 at 23:01

4 Answers

up vote 32 down vote accepted

Use the oncontextmenu event.

Here's an example:

<div oncontextmenu="javascript:alert('success!');return false;">
    Lorem Ipsum
</div>

Don't forget to return false, otherwise the standard context menu will still pop up.

share|improve this answer
18  
using event listeners: elt.addEventListener('contextmenu', function(ev) { ev.preventDefault(); alert('success!'); return false; }, false); – rampion Mar 23 '11 at 13:05

I think that you are looking for something like this:

   function rightclick() {
    var rightclick;
    var e = window.event;
    if (e.which) rightclick = (e.which == 3);
    else if (e.button) rightclick = (e.button == 2);
    alert(rightclick); // true or false, you can trap right click here by if comparison
}

(http://www.quirksmode.org/js/events_properties.html)

And then use the onmousedown even with the function rightclick() (if you want to use it globally on whole page you can do this <body onmousedown=rightclick(); >

share|improve this answer
1  
I think you meant if ((e.which && e.which == 3) || (e.button && e.button == 2)). – Shea May 4 '12 at 2:57
2  
or just (e.which === 3 || e.button === 2) – ansiart Jan 17 at 21:41

I would suggest using JQuery, Here's an example

share|improve this answer
10  
I don't want to add JQuery support. – Giffyguy Nov 20 '10 at 23:01
@Giffyguy Why not? – Šime Vidas Nov 20 '10 at 23:47
2  
If you're aiming for UI extension not restriction as you said, it is completely insane to build your own library from scratch, and test in all different browsers. Not recommended. – bobobobo Aug 11 '12 at 6:15

With Chase's answer, if you are going to use a function you've written rather than javascript:alert("Success!"), remember to return false in BOTH the function AND the oncontextmenu attribute.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.