Guest User

Untitled

a guest
Oct 22nd, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. < iframe id="rotate_sites" src="" width="600" height="850" frameborder="1">
  2. </iframe>
  3. < script>
  4. var websites = 1,
  5. sites =['http://mpets.mobi','http://mpets.mobi'];
  6. function newSite() {
  7. if ( websites >= sites.length ) {
  8. websites = 0;
  9. }
  10. document.getElementById('rotate_sites').src = sites[websites];
  11. websites++;
  12. }
  13. setInterval(newSite, 2000);
  14. < /script>
Add Comment
Please, Sign In to add comment