JSFiddle - React, Tailwind, and code Playground
by Bandydan
HTML
<ul>
<li>hello</li>
<li>hello 2</li>
<li>hello 3</li>
</ul>
<!--
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.js"></script>
<script src="jquery-2.1.3.js"></script> - place at bottom
-->
CSS
ul li { color: red;}
.emphasis { color: green;}
JavaScript
//jQuery('ul li').css('color', 'green');
$('ul li').addClass('emphasis');