JSFiddle - React, Tailwind, and code Playground

by vijayweb

HTML

<a id="vj" href="http://www.google.com/">Google</a>

JavaScript

$(function(){
  $("a").click(function(){
  
      alert($(this).html());
      
  });
});