var total = $('#profile_answer_counter').text(); var n = $( ".questionBox" ).length; var tid = setInterval(mycode, 100); var msg = ""; function mycode() { msg = n + " / " + total; console.log(msg); $('.submit-button-more').trigger("click"); n = $( ".questionBox" ).length; if (n==total) { clearInterval(tid); msg = n + " / " + total; console.log(msg); alert("Terminé, merci ! :) "); } }