Search code examples
firefoxwebmozilla

Hide/Disable right click menu on firefox


How to Disable the firefox menu when right clicked on the web page, firefox is dispalying a menu box which has options like 'Save Page As' , 'View Page Source' etc. I want to disable that menu


Solution

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