JSFiddle - React, Tailwind, and code Playground

HTML

<div>
    This is the box content!
</div>

CSS

a {
    display: block;
        width: 500px;
    height: 50px;
    text-align: center;
    background-color: #ccc;
    padding: 20% 0;
}

JavaScript

$('div').on('click contextmenu', function (event) {
    if (event.type === 'contextmenu') {
        alert("ok");
    }
    else {
        // this would automatically navigate to your link
    }
});