I need to program a horizontal scroller/slider which will contain images and captions underneath each image; the data is coming in the form of an array of objects. So basically I will need to loop through the data and populate each 'item' in the scroller with data; data will have image url and other data. There can be hundreds of data items. Anyway, upon clicking any item I should be able to 'capture' the data about which item was clicked and use elsewhere in my webpage.
Is there such thing out there? I have looked for some jQuery based solution but so far haven't found anything which would meet the requirements. I don't want to re-invent the wheel and program something if something already exists.
Thanks!