JSFiddle - React, Tailwind, and code Playground

by oshirowanen

HTML

<div id="ABC_123" class="test">some text here</div>

JavaScript

$('.test').live('click', function() {
        alert($(this).attr("id")); /* give ABC_123 */
    });