JSFiddle - React, Tailwind, and code Playground

by Richard Hunter

HTML

<div class="bar"></div>
<a id="foo" href="google.com">google</a>

CSS

.bar {
  background: blue;
  padding: 40px;
  position: relative;
  top: 0px;
  opacity: 0;
}

JavaScript

foo.onclick = (event) => {
  event.preventDefault();
  console.log('hello');
}