JSFiddle - React, Tailwind, and code Playground

by Neal

HTML

<div id='right'>HELLOO THERE!!
    <br/>
    <br/>    
    <br/>
    <br/>
    
    THIS IS A TEST!</div>

JavaScript

$(document).bind('contextmenu','#right', function(e){
    e.preventDefault();
    alert('hi there!');
    return false;
})