Created
February 1, 2013 18:03
-
-
Save Kolesias123/4692962 to your computer and use it in GitHub Desktop.
This file contains 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 Vote() | |
{ | |
$.ajax({ | |
type: "POST", | |
url: SITE_URL+"_ajax_votar.php", | |
data: {'fecha':16,'tema':307}, | |
contentType: "application/x-www-form-urlencoded", | |
dataType: "html", | |
success: function(datos){ | |
if(datos == 'ok=1') | |
{ | |
i++; | |
console.log('Voto #' + i + ' enviado'); | |
} | |
} | |
}); | |
} | |
setInterval(Vote, 1000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment