JSFiddle - React, Tailwind, and code Playground
HTML
<h1 id="select_me">Select me and add the `selected` class</h1>
<h1>Leave me alone</h1>
CSS
.selected {
color: #1b609a;
font-family: helvetica;
}
/* irrelevant */
body {
font-family: helvetica;
}
JavaScript
window.addEvent('domready', function(){
$('select_me').addClass('selected');
});