Skip to content

Instantly share code, notes, and snippets.

@Kolesias123
Created February 18, 2013 10:46
Show Gist options
  • Save Kolesias123/4976560 to your computer and use it in GitHub Desktop.
Save Kolesias123/4976560 to your computer and use it in GitHub Desktop.
var i = 0;
function time(){return Math.floor(new Date().getTime()/1000);}
function Vote()
{
$.ajax({
type: "GET",
url: "http://www.oye897.com.mx/o1/modulos/hitazos2.php",
data: {'a':'Vk9UQUhJVEFaTw==','w':'NTM5','key': time()},
contentType: "application/x-www-form-urlencoded",
dataType: "html",
success: function(datos)
{
if(datos == "<img src='../imagenes/iconos/votar.png' border='0'>|alert('Gracias por participar con nosotros :D')")
{
i++;
console.log('Voto #' + i + ' enviado');
}
else
{
r = i + 1;
console.log('Voto #' + r + ' no ha sido enviado');
}
}
});
}
setInterval(Vote, 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment