I have the following code working properly (which, for a designer, is good progress) and I need to link to an internal image within the Carousel and load that ... let's say, image 4 of row 3.
I can make external links such as URLs and mailto etc open fine, but how do I load (and go directly to) a specific image?
Code:
html: [
'<div>',
'<img class="my-carousel-item-img" src="', category, '-', j, '.jpg" />',
'<div id="external_link">',
'<a href="http://www.google.com">Open external link</a>',
'</div>',
'<div id="internal_link">',
'<a href="????????">Load image 4 of row 3</a>',
'</div>',
'</div>'
]
Thanks for any help.