JSFiddle - React, Tailwind, and code Playground

by mlsteeves

HTML

<div id="one">
blah
</div>

CSS

#one{
  background-color: navy;
  color: white;
}

JavaScript

var one = $('#one')[0];
one.addEventListener('pointerdown', md, false);

function md(ev){
	alert('here');
}