JSFiddle - React, Tailwind, and code Playground

by Chris Rebert

HTML

<div id="foo"></div>

JavaScript

var div = document.getElementById('foo');
var result = (div.dispatchEvent !== undefined);
alert(result ? "PASS" : "FAIL");