View Single Post
Old Mar 7th, 2008, 5:38 PM   #2
grimpirate
King of Portal
 
grimpirate's Avatar
 
Join Date: Sep 2005
Posts: 431
Rep Power: 4 grimpirate is on a distinguished road
Send a message via Yahoo to grimpirate
Re: Random image array

If you want to display all 5 images it's easier just to do the following:
<script type="text/javascript">
<!--
	for(var i = 0; i < 5; i++) {
		document.write('<img src="image"' + (i + 1) + '.gif">');
	}
//-->
</script>
Also be sure to properly enclose your code in code tags.
__________________
Lo, there do I see my father. 'Lo, there do I see My mother, and my sisters, and my brothers. 'Lo, there do I see The line of my people... Back to the beginning. 'Lo, they do call to me. They bid me take my place among them. In the halls of Valhalla... Where the brave... May live... ...forever.. GrimBB | Mimesis
grimpirate is offline   Reply With Quote