I have a script that is working fine in DreamWeaver CS5 but when I apply it to my page it will not perform properly nor show.

<script language="JavaScript">
    <!-- 
    images = new Array(4); 
    images[0] = "<a href = 'twitter.com/GudSkunc'><img src='i1199.photobucket.com/albums/aa469/GudSkuncImages/…; alt='GudSkunc on Twitter'></a>"; 
    images[1] = "<a href = 'facebook.com/pages/Gud-Skunc-ICC/… src='i1199.photobucket.com/albums/aa469/GudSkuncImages/…; alt='GudSkunc on Facebook'></a>"; 
    index = Math.floor(Math.random() * images.length); 
    document.write(images[index]); 
    //done 
    // -->
</script>
link|improve this question
1  
posting code will increase your chance to get help. – Taesung Shin Aug 21 '11 at 6:59
feedback

2 Answers

call the JavaScript after page load or bottom of the page. if you need more information please provide the code here.

link|improve this answer
<script language="JavaScript"><!-- images = new Array(4); images[0] = "<a href = 'twitter.com/GudSkunc'><img src='i1199.photobucket.com/albums/aa469/GudSkuncImages/…; alt='GudSkunc on Twitter'></a>"; images[1] = "<a href = 'facebook.com/pages/Gud-Skunc-ICC/… src='i1199.photobucket.com/albums/aa469/GudSkuncImages/…; alt='GudSkunc on Facebook'></a>"; index = Math.floor(Math.random() * images.length); document.write(images[index]); //done // --></script> – Rick Gee Aug 21 '11 at 7:01
following code work fine. var images = new Array(2); images[0] = "<a href = 'twitter.com/GudSkunc'><img src='http://jsfiddle.net/img/logo.png' alt='GudSkunc on Twitter'>first image</a>"; images[1] = "<a href = 'facebook.com/pages/Gud-Skunc-ICC/'><img src='http://jsfiddle.net/img/logo.png' alt='GudSkunc on Facebook'>second image</a>"; var index = Math.floor(Math.random() * (images.length)); document.write(images[index ] ); – Chamika Sandamal Aug 21 '11 at 7:28
feedback

Create a wrapper for the image link and give it an id:

<div id="RotatingImageWrapper"></div>

Then place this <script> node just before the </body> close tag -- or place it in the document <head> and use a window.load event listener...

<script type="text/javascript" defer>
    var rotatingImages = new Array();   //-- Put no length here!
    rotatingImages[0] = "<a href = 'twitter.com/GudSkunc'><img src='i1199.photobucket.com/albums/aa469/GudSkuncImages/…; alt='GudSkunc on Twitter'></a>"; 
    rotatingImages[1] = "<a href = 'facebook.com/pages/Gud-Skunc-ICC/… src='i1199.photobucket.com/albums/aa469/GudSkuncImages/…; alt='GudSkunc on Facebook'></a>"; 
    // more image-links as desired ...

    var imgIndex = Math.floor (Math.random() * rotatingImages.length); 
    document.getElementById ("RotatingImageWrapper").innerHTML = rotatingImages[imgIndex]; 
</script>
link|improve this answer
So do I post this where I want the img to display or above/below </head>. If I do place it in the </head> how do I call it for the images I want to replace? Thanks for all your help so far! Appreciate It! – Rick Gee Aug 21 '11 at 7:46
Thanks Brock...I now understand! Lifesaving bro! – Rick Gee Aug 21 '11 at 8:04
what did you mean by use window.load event listener? Do this go in javascript code? – Rick Gee Aug 21 '11 at 8:07
First, please comment after/on my answer or use @Brock. That way, I get a notice of a reply. ... ... As for the load-event listener, probably best to put that in another question, but it would be something like this answer. – Brock Adams Aug 21 '11 at 9:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.