JSFiddle - React, Tailwind, and code Playground
by Curt
HTML
<a href="http://www.google.com">google</a>
JavaScript
$(function(){
$("a").click(function(e){
alert("abc");
});
});
by Curt
<a href="http://www.google.com">google</a>
$(function(){
$("a").click(function(e){
alert("abc");
});
});