JSFiddle - React, Tailwind, and code Playground
HTML
<a href="/about" id="thelink">
<h2>About me</h2>
<p>Find out what makes me tick!</p>
</a>
JavaScript
$(function(){
alert($("#thelink").css("display"));
});
<a href="/about" id="thelink">
<h2>About me</h2>
<p>Find out what makes me tick!</p>
</a>
$(function(){
alert($("#thelink").css("display"));
});