MediaWiki:Common.js

From Wiki Grepolis EN
Revision as of 20:28, 25 April 2011 by Ac04 (talk | contribs)
Jump to navigation

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
count = 0;
 function slideshow() {
	 
	 slides = ['one','two','three','four'];
	 alert(document.getElementById('slideshow').innerHTML);
	 //document.getElementById('slideshow').innerHTML = slides[count];
	 
	 if (count == slides.length)
	 {
		 count = 0;
	 }
	 setTimeout(slideshow(), 1000);
count++;
 }
 slideshow();