Reputation: 73
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
Upvotes: 2
Views: 742
Reputation: 51
document.addEventListener('contextmenu', event => event.preventDefault());
Upvotes: 1