0
I have an image I’m mapping and I want to put a link in some points, only when clicking these points I want you to open a window using some jquery plugin (lightbox type), to give a better effect, see the code I’m using:
<img class="zoomImg" src="images/crateria.png" style="position: absolute; top: -436.066px; left: -511.866px; opacity: 0; width: 2000px; height: 1494px; border: medium none; max-width: none; max-height: none;" usemap="#crateria-map">
<map name="crateria-map">
<area class="html5lightbox" href="https://www.youtube.com/watch?v=FXL2v657IZ4" shape="rect" coords="716,382,755,406" alt="map crateria">
</map>
Since the lightbox I’m using works only if an IMG tag is inside an A tag.
Help!