Advertisement
Guest User

Untitled

a guest
Dec 7th, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. <script type="text/javascript">
  2. var click = false;
  3.  
  4. function changeSnowStateOnClick()
  5. {
  6. if(click==true)
  7. {
  8. snowStorm.stop();
  9. click = false;
  10. }
  11. else
  12. {
  13. snowStorm.resume();
  14. click = true;
  15. }
  16. }
  17.  
  18. function changeText() {
  19. var button_snow = document.getElementById('button_snow');
  20. if (button_snow.innerText.match("Wlacz snieg")) {
  21. document.getElementById('button_snow').innerText = 'Wylacz snieg';
  22. snieg=1;
  23. } else {
  24. document.getElementById('button_snow').innerText = 'Wlacz snieg';
  25. snieg=0;
  26. }
  27. }
  28.  
  29. </script>
  30. <a href="#" class="register bradius" id="button_snow" style="background-color:#3399FF;" onclick="changeText()"><i class="fa fa-cloud fa_xtra" aria-hidden="true"></i>Wylacz snieg</a>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement