JSFiddle - React, Tailwind, and code Playground
by NunoMira
HTML
<div>
<a id="teste" href="#"> teste </a>
<br/>
<a id="maria" href="#"> maria </a>
</div>
CSS
a
{
text-decoration:none;
}
JavaScript
$(document).ready(function()
{
//para todos os links do site serem abertos numa nova janela excepto as do menu
$("a:not(#teste)").each(function(e)
{
$(this).css("color", "red");
});
});