Advertisement
patryk178

Untitled

Jan 29th, 2019
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <html>
  2. <head>
  3. <meta charset="UTF-8">
  4. </head>
  5. <body>
  6. <div id="napis">Lubie placki</div>
  7. <form name="formularz">
  8. <input type="button" value="kliknij" onclick="f()">
  9. </form>
  10. <script>
  11. var x = 0;
  12. function f()
  13. {
  14. if(x==0)document.getElementById("napis").innerHTML = "";
  15. else if(x==1)document.getElementById("napis").innerHTML = "Lubie placki";
  16. x++;
  17. if(x>1)x=0;
  18. }
  19. </script>
  20. </body>
  21. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement