Skip to content
Advertisement

JavaScript load Images in an Array and Show in Image Source

I created an array of images

JavaScript

I then create a function that is linked with a in my html file:

JavaScript

My image tag : <img id="pic" src="" height="300" width="500" border="0" alt="image"> This fails to update my img object, i used firebug to look at the DOM and my array is being populated properly but the img src is not be set?

Advertisement

Answer

Your example is incomplete. You need to show what the imageItem constructor does (and it’s convention to use a capital letter for the first character in a constructor), so:

JavaScript

should do the job here. You also seem to want imgArray as a global, so declare it as one:

JavaScript

Assigning an array literal is a bit easier:

JavaScript

Though I can’t see why you don’t just assign the array literal directly and not bother with the wrapper function. The startImage function can be a bit tidier:

JavaScript

Accessing element properties directly is more reliable across browsers and less to type than using setAttribute (which has quirks in some browsers).

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement