# Event Bubling https://www.youtube.com/watch?v=m0-0kBMmsPk <body> <div class="parentbox" onclick="parentCall()"> <div class="childbox" onclick="childCall()"> </div> </div> </body> <script> const parentCall=()=>{ alert("parent box call"); console.log("parent box call"); } const childCall =()=>{ alert("child box call"); console.log("child box call"); event.stopPropagation(); } </script>