-5

How can I disable the right click menu in html?

Please don't say its unprofessional, I am developing a public touch screen display for a museum.

I have already disabled text selection but if you touch and hold it brings the right click menu- very unprofessional :D

Thanks in advance.

Abdullah Seba
  • 354
  • 2
  • 6
  • 16

1 Answers1

11

Assuming this for a web app...

I also had to do this and used Javascript

 document.addEventListener("contextmenu", function (e) {
        e.preventDefault();
    }, false);

Should do the trick Thanks

Wheels73
  • 2,850
  • 1
  • 11
  • 20