Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <html>
  2. <body>
  3. <div id="parent">
  4. <button type="button" id="child">
  5. click me
  6. </button>
  7. </div>
  8.  
  9. <script>
  10. var parent = document.querySelector('#parent');
  11. var child = document.querySelector('#child');
  12.  
  13. parent.addEventListener('click', function(event){
  14. console.log("I am from parent");
  15. });
  16.  
  17. child.addEventListener('click', function(event){
  18. console.log("I am from child");
  19. });
  20. </script>
  21.  
  22. </body>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement