I created a linked image with an overlay div:
<div class="imageBlock">
<a href="http://www.google.com">
<img src="https://placeimg.com/640/480/any">
</a>
<a href="http://www.twitter.com">
<img src="https://placeimg.com/640/480/any">
</a>
<a href="http://www.facebook.com">
<img src="https://placeimg.com/640/480/any">
</a>
<div class="overlayButton">
Go Google
</div>
</div>
As part of the Jquery Gallery plugin, only one image is visible at a time. When clicked, it opens a lightbox slider.
My goal is to make the overlay div clickable to the same image link destination. Currently, when hovering over the overlay div it appears as a normal block.
Here is the code snippet for reference: https://jsfiddle.net/z9mda5wv/