JSFiddle - React, Tailwind, and code Playground
by evan
HTML
<div data-url="/123">123</div>
<div data-url="/456">456</div>
<div data-url="/789">789</div>
CSS
div {
width: 100px;
height: 100px;
margin: 5px;
background-color: red;
color: white;
}
JavaScript
$('div').on('click', function () {
var $el = $(this);
var url = $el.data('url');
alert(url);
//document.location.href = url;
});