Guest User

Untitled

a guest
Feb 8th, 2015
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.33 KB | None | 0 0
  1. <html>
  2. <body>
  3. <div id="lol">blabla1</div>
  4. </body>
  5. <script>
  6. textInt = 0;
  7.  
  8. setInterval(switchText, 10000);
  9.  
  10. function switchText() {
  11.     if(textInt == 0) {
  12.         textInt++;
  13.         var nText = "blabla1";
  14.     } else {
  15.         textInt = 0;
  16.         var nText = "blabla2";
  17.     }
  18.  
  19.     document.getElementById("lol").innerHTML = nText;
  20. }
  21.  
  22. </script>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment