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());
});
});
by vijayweb
<a id="vj" href="http://www.google.com/">Google</a>
$(function(){
$("a").click(function(){
alert($(this).html());
});
});