Hi,
We’re trying to make the images in the Modern Events Calendar Carousel view clickable. We’ve added the js below but it isn’t working. The image has a hyperlink attached but the url is ‘undefined’. Can you identify what we might have wrong?
jQuery(document).ready(function($){
$('.mec-event-article > .event-carousel-type1-head').each(function(){
var link = $(this).find('.mec-event-carousel-content > .mec-event-carousel-title > a').attr('href');
$(this).find('.mec-event-image').wrap('<a href="'+ link +'" ></a>')
});
});
Thanks
