Advertisement
MnassriSami

Ask.fm - Scroll Down To The First Answer !

Jul 22nd, 2014
245
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var total = $('#profile_answer_counter').text();
  2. var n = $( ".questionBox" ).length;
  3. var tid = setInterval(mycode, 100);
  4. var msg = "";
  5.  
  6. function mycode() {
  7.     msg = n + " / " + total;
  8.         console.log(msg);
  9.     $('.submit-button-more').trigger("click");
  10.    
  11.     n = $( ".questionBox" ).length;
  12.  
  13.     if (n==total) {
  14.         clearInterval(tid);
  15.         msg = n + " / " + total;
  16.             console.log(msg);
  17.         alert("Terminé, merci ! :) ");
  18.     }
  19.        
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement