Guest User

Untitled

a guest
Jan 26th, 2016
2,752
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. window.setInterval(function(){
  2. $.ajax({
  3. url : 'ajax.functions.php',
  4. type: 'POST',
  5. data : { action: 'vote', id: 186, name: "", email: ""},
  6. success: function(result){
  7. if( result == "ok" ) {
  8. $('.galleriaEntry .voteBox').slideUp();
  9. $('.galleriaEntry .voteFeedback').html('Kiitos äänestäsi. Voit äänestää tätä kuppia uudestaan tunnin kuluttua. ');
  10.  
  11. //Update vote counters
  12. $('.galleriaEntry .votes').html( parseInt($('.galleriaEntry .votes').html()) + 1 );
  13. $('#cup_' + 186 + ' .votes').html( parseInt( $('#cup_' + 186 + ' .votes').html() ) + 1);
  14. }
  15. }
  16. });
  17. }, 15);
  18.  
  19. >mene chrome
  20. >http://195.10.163.148/r-kioski/galleria.php
  21. >f12, valitse konsoli
  22. >lisää teksti ja paina enter
  23.  
  24. automaattinen äänestysbotti pakko ottaa-mukille
Advertisement
Add Comment
Please, Sign In to add comment