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');
});
by rpflorence
<div id="el">right click me</div>
$('el').addEvent('contextmenu', function(event){
event.stop();
alert('This image is copyright (c) My Powerful Home');
});