JSFiddle - React, Tailwind, and code Playground

by paulyoder

HTML

<html>
    <body>
        <div class="grandparent">
            grandparent
            <div class="parent">
                parent
                <div class="child">
                    child
                </div>
            </div>
        </div>
    </body>
</html>

CSS

div {
    padding: 50px;
    border: 1px solid black;
}

JavaScript

$('.grandparent > .parent').click(function() {
    alert('hi');
});