Skip to the content...

Welcome to the David Walsh Blog. I'm a MooTools, Dojo, jQuery, CSS, and PHP Web Developer located in Madison, Wisconsin, United States. Please contact me if I can make your experience on my website better.

Disable Right Click Using MooTools 1.2

19 Responses »

We all know that it's bad practice to disable the right click context menu, so I'll skip the explanation of why that is. Unfortunatley, however, customer request comes before anything else when you're doing their website. If your project is using MooTools 1.2, you can achieve this goal.

The MooTools 1.2

	
	window.addEvent('domready', function() {
		document.body.addEvent('contextmenu',function(e) {
			e.stop();
		});
	});
	

Again, the only time I would do this is if the customer asked for it. It's good to know that it's so easy to implement, right?

Discussion

  1. oliver
    October 30, 2008 @ 4:50 pm

    contextmenu eh?? hmmm, news to me.

  2. October 30, 2008 @ 4:58 pm

    ZOMG Bad practice alert!!!

    Kidding, you can only argue that so far. Also, this is quite useful should you want to implement your own context menu…

  3. awake
    October 30, 2008 @ 5:36 pm

    dave…

    whad do yo use to format source code on your blog post? (the code that puts the line #’s, copy to clipboard, e.t.c.)

    thanks…

  4. October 30, 2008 @ 7:32 pm

    I think e.stop() is enough, because it already do preventDefault in the Mootools Core source.

  5. October 30, 2008 @ 7:54 pm

    @Lim Chee Aun: Good call! I’ve adjusted the code. Thank you for mentioning that.

  6. October 31, 2008 @ 4:52 am

    This is also so useful when planning to add a custom context menu to your page, or a custom menu appears when you right click a certain element (a hyperlink, a button, or an image).

    Thanks for sharing, David.

  7. October 31, 2008 @ 10:28 am

    @Ahmed: Thanks — I have been working on a custom context menu…

  8. October 31, 2008 @ 12:50 pm

    @David: You’re welcome! Will you populate the custom context menu?

    PS: Is it possible to work a clipboard manager (copy selection to clipboard) using MooTools?

  9. October 31, 2008 @ 5:09 pm

    uhg. I do not like this. Disabling my browsers features is not cool, I would be upset at any site or service that pulled this.

    @Ahmed,

    javascript cannot access the clipboard(which is a good thing) unless the browser has some feature that allows this(like older builds of IE). However, with the help of flash, you can do it, which is what syntaxhighlighter(in use here) does.

  10. November 1, 2008 @ 5:37 am

    Quit good for prevent picture steeling ;) ….

  11. November 1, 2008 @ 11:48 am

    great stuff, it’s new to me to heard about contextmenu, but anyway good job…. hope you will work more about mootools….

  12. November 1, 2008 @ 5:36 pm

    @weblizzer: To put it simple, a context menu is the menu that appear when you rightclick somewhere, like on Windows desktop for example, the “Refresh New-> etc..” is a contextmenu.

  13. November 1, 2008 @ 8:07 pm

    Why document.body and not document.documentElement (i.e. html tag)? What id body has a margin, or html has a padding set?

  14. November 4, 2008 @ 10:27 am

    I don’t this will prevent displying context menu from opera…as far as I know you can’t disable context menu in opera….

  15. November 4, 2008 @ 10:30 am

    @Roshan: That’s correct.

  16. imran
    November 25, 2008 @ 2:19 am

    hi,
    its all fine, but do you have any solution to show Custom Context Menu on right click in Opera???
    if you find any solution please reply to my email , immidiately, you help will be highly appriciated, thanks
    imran

  17. January 28, 2009 @ 8:28 am

    David,

    For compatibility with IE7, shouldn’t that be $(document.body) rather than just document.body?

    Rob

  18. May 12, 2009 @ 11:32 am

    For reference, you should be able to disable this by overriding the oncontextmenu event in the javascript console. It looks like this is being added to document.body, so document.body.oncontextmenu=”";

Be Heard!

Share your thoughts with fellow developers of all skill levels! I want to hear from you!

Name*:
Email*:
Website:  
Wrap your code with <code> tags, f00!