JSFiddle - React, Tailwind, and code Playground

by chintansoni

HTML

<div id="clickID" style="height:250px;width:180px;border:1px solid black;">
    Here Your Pie Chart
</div>

JavaScript

/*document.getElementById("clickID").addEventListener("contextmenu", function(e){
    alert('df');
    e.preventDefault();
}, false);
*/
$(document).ready(function(){

    $("#clickID").bind("contextmenu", function(e) {
        e.preventDefault();
    });
    
});