JSFiddle - React, Tailwind, and code Playground

by peterbenoit

HTML

<a id="yahoo" href="//yahoo.com">yahoo</a>
<a id="google" href="//google.com">google</a>

CSS

a {
    display:block;
    height: 100px;
    position: absolute;
}

#yahoo {
    background:red;
    width:100px;
    z-index:1;
}

#google {
    background:blue;
    opacity:.5;
    width:200px;
    z-index:2;
}

JavaScript

$('a').on('click', function(e){
    alert($(this).attr("href"));
    e.preventDefault();
});