JSFiddle - React, Tailwind, and code Playground

HTML

<a href="http://www.google.com" target="_parent" class="link">Click Me</a>

JavaScript

$(".link").mousedown(function(event) {
    switch (event.which) {
        case 1:
            alert('Open Modal');
            break;
        case 3:
            window.open("http://www.google.com", '_parent');
            break;
    }
    return false;
});