First page Back Continue Last page Image
- <!DOCTYPE html>
- <html>
- <head>
- <title>Random Image</title>
- <script src="script10.js"></script>
- <link rel="stylesheet" href="script01.css">
- </head>
- <body>
- <img src="images/spacer.gif" width="305" height="312" id="myPicture" alt="some image">
- </body>
- </html>
- window.onload = choosePic;
- var myPix = new Array("images/lion.jpg","images/tiger.jpg","images/bear.jpg");
- function choosePic() {
- var randomNum = Math.floor(Math.random() * myPix.length);
- document.getElementById("myPicture").src = myPix[randomNum];
- }
- Can you tell me what is going on here?