Advertisement
Claof

Turn page into basic clicking game

May 23rd, 2017
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var newText = [`
  2. <html>
  3. <head>
  4. <title>Basic Clicker Game</title>
  5. <body>
  6. <center>
  7. <a id="clicks"></a>
  8. <br>
  9. <button onClick="addClicks()">Click</button>
  10. </center>
  11. </body>
  12. <script>
  13. clicks = 0
  14. function addClicks() {
  15. clicks++
  16. }
  17. setInterval("document.getElementById('clicks').innerText=clicks",1)
  18. </script>
  19. </head>
  20. </html>
  21. `]
  22. document.write(newText)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement