Guest User

Untitled

a guest
Feb 21st, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. // https://rollbar.com/docs/
  2.  
  3. const links = document.querySelectorAll(`ul.image-list a`);
  4.  
  5. links[0];
  6. // <a href="/docs/notifier/rollbar-gem/" class="ruby">::before Ruby</a>
  7.  
  8. links[0];
  9. //
  10.  
  11. links[0].textContent;
  12. //"Ruby"
  13.  
  14. links[0].innerText;
  15. // "Ruby"
  16.  
  17. links[0].innerHTML;
  18. // "Ruby"
  19.  
  20. // ??? links[0]::before;
Add Comment
Please, Sign In to add comment