Advertisement
Guest User

Untitled

a guest
May 26th, 2019
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const answerSelector = () => {
  2.   $('.question:not(.hidden) .correct').click();
  3. }
  4.  
  5. const interval = setInterval(() => {
  6.   answerSelector();
  7.   if($('.question').length === 0) {
  8.     clearInterval(interval);
  9.     console.log('done');
  10.   }
  11. }, 1000);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement