Advertisement
Guest User

forum.oogiri.biz's more than 50 responses

a guest
Dec 7th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // http://forum.oogiri.biz/board/subback.html
  2.  
  3. var threads = document.querySelectorAll('body > font:nth-child(1) > a');
  4. for (var i = 0, counts = 0; threads[i]; i++) {
  5.   if (threads[i].innerHTML.match(/ \((\d{2,})\)/) && threads[i].innerHTML.match(/ \((\d{2,})\)/)[1] > 50) {
  6.     console.log(threads[i].innerHTML, ++counts);
  7.   }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement