Guest User

Untitled

a guest
Apr 22nd, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title></title>
  4. </head>
  5. <body>
  6.  
  7. <div>
  8. <p data-message="hello">Hello, World</p>
  9. <ul>
  10. <li></li>
  11. </ul>
  12. <p>Try again</p>
  13. </div>
  14. </body>
  15. </html>
  16.  
  17. var el = document.querySelector('li');
  18. el.closest('p[data-message]');
  19.  
  20. el.closest('div').querySelector('p[data-message]')
Add Comment
Please, Sign In to add comment