Skip to content

Instantly share code, notes, and snippets.

@Kolesias123
Created February 1, 2013 18:03
Show Gist options
  • Save Kolesias123/4692962 to your computer and use it in GitHub Desktop.
Save Kolesias123/4692962 to your computer and use it in GitHub Desktop.
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