JSFiddle - React, Tailwind, and code Playground

HTML

<body>
    <div id="first"><p>đoạn đầu</p>
        <div id="second"><p>đoạn 2</p>
            <p id="third">đoạn 3</p>
        </div>
    </div>
</body>

CSS

p{
    color:red;
}

JavaScript

$("#first").click(function(e) {
    alert("first");
});
$("#second").click(function(e) {
    alert("second");
});
$("#third").click(function(e) {
    alert("third");
    e.stopPropagation();
});