JSFiddle - React, Tailwind, and code Playground

by Adrià Vilanova Martínez

HTML

<a href="https://www.google.com" target="_BLANK" onclick="return openlink();">Link 1</a> | <a href="https://www.google.com" target="_BLANK">Link 2</a>

JavaScript

function openlink() {
    alert("Hello World!");
    return false;
}