How to disable right click in website?


I want to disable the right click of the mouse in my website, How can do that?

1 Answer

5 years ago by

You can do that by adding an event listener to the contextmenu as below,

document.addEventListener('contextmenu', event => event.preventDefault());
5 years ago by Divya