JSFiddle - React, Tailwind, and code Playground
HTML
<a href="a.htm">Anchor</a>
JavaScript
$(document).ready(function () {
$("a").click(function () {
$(this).attr("target", "_blank");
});
});
<a href="a.htm">Anchor</a>
$(document).ready(function () {
$("a").click(function () {
$(this).attr("target", "_blank");
});
});