Created
February 18, 2013 10:46
-
-
Save Kolesias123/4976560 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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