JSFiddle - React, Tailwind, and code Playground

by Nimish Chandola

HTML

<div onclick="alert('Outer Div handler fires!')" style="height:200px; border:2px solid red;">
    <div onclick="alert('Inner Div handler fires!')" style="height:40px; border:2px solid green; margin-top 100px;">
        <input type="button" value="Click Me"></input>
        <p> On click of button event propogation starts, in this particular case button do not have handler for the event.
 On click of button event propogation starts and the handler coming on it's way handles it.</p>
        <p>This is an example of event bubbling</p>
    </div>
    
</div>