JSFiddle - React, Tailwind, and code Playground

by batya15

HTML

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

CSS

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

* {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none; 
}

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

JavaScript

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