Advertisement
Guest User

Untitled

a guest
Nov 23rd, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function tentaComprar(url) {
  2. jQuery.ajax(url,  
  3.             {
  4.                success: function (data) {
  5.                    if(jQuery(data).find(".box_botao-cm").length){
  6.                         jQuery(".box_botao-cm").closest("a").click()
  7.                     } else {
  8.                         console.log("ainda não ativou");
  9.                         setTimeout(tentaComprar(url), 5000);
  10.                     }
  11.             }
  12.     });
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement