Guest User

Untitled

a guest
Oct 22nd, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. $(document).on('click', '.round', function() {
  2. var score = 0;
  3. score++;
  4. $('#result').html(score);
  5. this.remove();
  6. });
  7.  
  8. $(document).on('click', '.round', function() {
  9. var score = 0;
  10. ^^^^^^^^^^^^^^
  11. score++;
  12. $('#result').html(score);
  13. this.remove();
  14. });
  15.  
  16. var score = 0;
  17. $(document).on('click', '.round', function() {
  18. score++;
  19. $('#result').html(score);
  20. this.remove();
  21. });
Add Comment
Please, Sign In to add comment