I am looking to create a horizontal scroller/slider that will display images with captions underneath each image. The data is provided in an array of objects, so I need to iterate through the data and populate each item in the scroller with the necessary information, including image URLs and other details. There could be potentially hundreds of items in the data array. Additionally, I need to be able to capture which item was clicked on and utilize that information elsewhere on my webpage.
Does anyone know of an existing solution for this? I have searched for jQuery-based options but haven't found one that fits all of my requirements. I would prefer not to reinvent the wheel if a suitable solution already exists.
Thank you!