Guest User

Untitled

a guest
May 27th, 2021
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>parentNode</title>
  6.  
  7. </head>
  8. <body>
  9. <header id="parent2> <div id="parent1> <p id="child"> <span id="elem"></span> </p> </div>
  10. </header>
  11.  
  12.  
  13. <script>
  14.  
  15. const el = document.getElementById("elem")
  16. $('#elem').parents('div')
  17. console.log($('#elem').parents('div'))
  18.  
  19. </script>
  20. </body>
  21. </html>
Advertisement
Add Comment
Please, Sign In to add comment