JSFiddle - React, Tailwind, and code Playground

HTML

<a href="//www.yahoo.com">Yahoo!</a>
<a href="//www.facebook.com">Facebook</a>
<a href="//www.google.com">Google</a>
<div class="card col-md-4 col-md-offset-4" style="height:71px;color:rgb(217,221,225);">
<a href="#"><span class="card-title">Santa's Best</span></a>
<p>3750 Deerfield Rd #1000, Riverwoods, IL 60015, USA</p>
</div>

JavaScript

$('a').each(function(a, b){
    $(this).attr('id', a).on('click', function(e){
        e.preventDefault();
        alert($(this).attr('id'));
    });
});