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 */
});
by oshirowanen
<div id="ABC_123" class="test">some text here</div>
$('.test').live('click', function() {
alert($(this).attr("id")); /* give ABC_123 */
});