0

I want to restrict default context menu on long press in android/ios devices and show my custom menu. Please note that it's a normal web page opening in a mobile browser.

1 Answers1

0

It's the same as disabling right click - add this listener:

document.addEventListener('contextmenu', event => event.preventDefault());

Tested on Firefox for Android

zelitomas
  • 113
  • 8