Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE HTML>
- <html>
- <head>
- <meta charset="utf-8">
- <title>parentNode</title>
- </head>
- <body>
- <header id="parent2> <div id="parent1> <p id="child"> <span id="elem"></span> </p> </div>
- </header>
- <script>
- const el = document.getElementById("elem")
- $('#elem').parents('div')
- console.log($('#elem').parents('div'))
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment