159
I want to disable the right click of the mouse in my website, How can do that?
You can do that by adding an event listener to the contextmenu as below,
contextmenu
document.addEventListener('contextmenu', event => event.preventDefault());