JSFiddle - React, Tailwind, and code Playground
by Chase Wilson
HTML
<h1 id="main-header">
This is a header
</h1>
JavaScript
$('main-header').click((e) => {
e.preventDefault();
alert('YOU CLICKED ME')
})
by Chase Wilson
<h1 id="main-header">
This is a header
</h1>
$('main-header').click((e) => {
e.preventDefault();
alert('YOU CLICKED ME')
})