Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. <button onclick="start()">START</button>
  2.  
  3. function start() {
  4. $.ajax({
  5. url: url + value,
  6. type: 'GET',
  7. async: true,
  8. success: function(result) {
  9. if (result.match("success")) {
  10. removeline();
  11. live(result);
  12. }else {
  13. removeline();
  14. dead(result);
  15. }
  16. }
  17. });
  18. }, 2000 * index);
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement