JSFiddle - React, Tailwind, and code Playground
by arian
HTML
<div id="clickme">You can click me with the right mousebutton</div>
CSS
#clickme {
display: block;
padding: 20px;
font-size: 2em;
}
JavaScript
Event.definePseudo('right', function(split, fn, args){
var event = args[0];
if (event.rightClick) fn.apply(this, args);
});
document.id('clickme').addEvent('mousedown:right', function(){
this.highlight();
});