Hi all,
I have the following array with which I need to reference to the second item in every array and write it out onto the page, how can this be done?
Thanks in advance.
I have the following array with which I need to reference to the second item in every array and write it out onto the page, how can this be done?
Code:
var arr = new Array(); arr[0] = 'images/001.jpg','Image 1 Description SECOND ITEM'; arr[1] = 'images/002.jpg','Image 2 Description SECOND ITEM';
Comment