Advertisement
Guest User

Untitled

a guest
Jun 2nd, 2011
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script>
  2. var i = false;
  3. function display_alert()
  4. {
  5.     if (i == false) {
  6.         alert("Один раз");
  7.     }
  8.         i = true;
  9. }
  10. </script>
  11.  
  12. <a href="#" onclick="display_alert();return false;">Один раз</a>
  13.  
  14.  
  15.  
  16.  
  17.  
  18.  
  19.  
  20. <script>
  21. var j = false;
  22. function display_alert2()
  23. {
  24.     if (j == false) {
  25.         alert("Через раз");
  26.     }
  27.    
  28.     j = true - j;  
  29. }
  30. </script>
  31.  
  32. <a href="#" onclick="display_alert2();return false;">Через раз</a>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement