Hide options

Random image loading

This example will randomly load image1.jpg through image99.jpg
<script type="text/javascript">
   nRandom = Math.ceil(Math.random() * 99);
   document.write ('<img src="image' + nRandom + '.jpg">');
</script>


Description

Place this JavaScript where you want the image.


Top