Today, I would like to share a fairly simple technique to disable right click menu of the website. I was using around 10-15 lines of JavaScript code to disable the menu that appears on the right click on the browser.
Here the code which you can use in the body tag of the document.
<body oncontextmenu="return false;">
As you can see, this code blocks the context menu i.e the menu which appears on the right click on the browsers. I