JSFiddle - React, Tailwind, and code Playground

by batya15

HTML

<div class="click"></div>

CSS

div {
  padding: 20px;   
  background: #eee;
}

body {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none; 
-webkit-tap-highlight-color: rgba(0,0,0,0);
}

.click {
    height: 50px;
    width: 50px;
    background: red;
    border-radius: 50px;
}

JavaScript

$('.click').click( function(){
    alert('click');
})