Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Supported by

Prevent right-click menu

Hello,

I have created a task that needs participants to click right mouse. When I try to run it on OSweb, the context menu pop up when clicking the right mouse. Does anyone know how to prevent it? Thank you in advance!

Best,

MFZ

Comments

  • I've worked it out by adding the following code:


    document.addEventListener("contextmenu", function(e) {

     e.preventDefault();

    });

Sign In or Register to comment.