JSFiddle - React, Tailwind, and code Playground

by Shree Khanal

HTML

<label class="glyphicon glyphicon-remove-circle cancelTime thex" data-timeid="12">123</label>

JavaScript

$(".thex").on('click', function () {
    var id = $(this).data("timeid")
    alert(id);

});