JSFiddle - React, Tailwind, and code Playground

HTML

<a href="http://aldiunanto.com">Go 2to my site</a>

CSS

,n,

JavaScript

$(function(){
    $('a').on('click', function(e){
        e.preventDefault();
        alert(this.getAttribute('h2ref')); //pure js
        alert($(this).attr('href')); //jQuery method
    });
});