Prevent right-click menu
in OpenSesame
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();
});