Tagged: hotspots
Hi!
Ok, this one I can’t find a resolution to.
On one image on one page (WEST), I have hotspots 1-11, which worked perfectly.
Now, on another page, with a different image (EAST) I want to start the hotspots at 12.
Is there a solution to that?
Thanks in advance.
Hi,
Drag a Code Block element somewhere in that page and put this code in it:
<script>
(function($){
$(window).load(function() {
$('.av-image-hotspot_inner').each(function(){
var theNum = parseInt($(this).text()) + 11;
$(this).text(theNum);
});
});
})(jQuery);
</script>
Regards,
Josue
You are awesome! Thank you!
You are welcome, glad to help :)
Regards,
Josue