JSFiddle - React, Tailwind, and code Playground
HTML
<a id="foo" href="Next.html" style=" padding-right: 10px; padding-bottom: 20px">Next page</a>
JavaScript
$("#foo").on("click", function (event) {
alert($(this).text());
});
$("#foo").trigger("click");
$( "#foo").unbind( "click" );