JSFiddle - React, Tailwind, and code Playground

by lshettyl

HTML

<a href="http://google.com">hold control and click me (doesn't pop alert)</a>
<a href="#">hold control and click me (no href, this works)</a>

JavaScript

$('a').click(function (e) {
   
    e.preventDefault();
    if (e.which === 1) {
        alert('If you see this alert, problem solved!')
    }
});