Advertisement
Guest User

TheWheatisHeat96 title lister

a guest
May 26th, 2023
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JavaScript 0.43 KB | Source Code | 0 0
  1. var titles=""
  2. a_tags=document.getElementsByTagName("a")
  3. for (var count=46; count < a_tags.length; count++) {
  4. var current_title=a_tags[count].getAttribute("title");
  5. if(current_title!=null) /* filter invalid data */ {
  6.     var video_id=a_tags[count].getAttribute("href").replace(/.*watch\?v=/,""); /* extract IDs */
  7.     titles+="\n"+video_id+"\x09"+current_title; /* add to title */
  8.     };
  9. }
  10. document.body.innerHTML+="<pre>"+titles+"</pre>";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement