R.Stela
R.Stela

Reputation: 73

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

Upvotes: 2

Views: 742

Answers (1)

Diego Ruiz
Diego Ruiz

Reputation: 51

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

Upvotes: 1

Related Questions