JSFiddle - React, Tailwind, and code Playground
by bilbobaggins
HTML
<a>first</a>
<a>secondary</a>
CSS
.highlight {
background: yellow;
}
JavaScript
$('a:first').click(function (ev) {
$(this).css({
backgroundColor : 'orange'
});
return false;
// Or ev.preventDefault();
});
$( "a:last" ).css({ backgroundColor: "yellow", fontWeight: "bolder" });