JSFiddle - React, Tailwind, and code Playground

by rpflorence

HTML

<div id="el">right click me</div>

JavaScript

$('el').addEvent('contextmenu', function(event){
    event.stop();
    alert('This image is copyright (c) My Powerful Home');
});