JSFiddle - React, Tailwind, and code Playground

by lollero

HTML

<div id="wrap">
  <div class="here">Lorem</div>
  <div>Ipsum</div>
  <div class="here">Dolor</div>
</div>

CSS

.clickEvent {
	border: 1px dashed #e1e1e1;
}

JavaScript

$('.here')
  .addClass('clickEvent')
  .on("click", function() {
    // Click event
  });

$('.clickEvent').css({ background: 'green' });