JSFiddle - React, Tailwind, and code Playground

by doug65536

JavaScript

$(document).on('contextmenu', function(event) {
    event.preventDefault();
    event.stopPropagation();
    $('body').empty().append($('<p/>').text('right click at ' + event.pageX + ',' + event.pageY));
});