JSFiddle - React, Tailwind, and code Playground

by Town

HTML

<div class="container">
    <title>Item Name</title>
    <price>$10.00</price>
</div>

JavaScript

$('.container').click(function() {
    alert($(":eq(0)", this)[0].tagName); // title tag
    alert($(":eq(1)", this)[0].tagName); // price tag
});