JSFiddle - React, Tailwind, and code Playground
by bilbobaggins
HTML
<a>first</a>
<a>secondary</a>
CSS
.highlight {
background: yellow;
}
JavaScript
$('a:first').css('color', '#cccccc')
.addClass('highlighted')
.end()
.find('a:first')
.css('color', 'red')
.end()