JSFiddle - React, Tailwind, and code Playground
HTML
<body>
<div>
<p>
Right click here for the default context menu.
</p>
</div>
<br/>
<div id="right-click">
<p>
Right click anywhere in here for an override.
</p>
</div>
</body>
CSS
#right-click {
border: solid green 3px;
padding-left: 1em;
}
JavaScript
var div = document.getElementById("right-click")
if (div.addEventListener) { // IE >= 9; other browsers
div.addEventListener('contextmenu', function(e) {
alert("Look at all of the neat stuff I can do here"); //here you draw your own menu
e.preventDefault();
}, false);
}