File: /var/www/bharti-foundation.stgviitor.com/wp-content/plugins/lifeline-plugin/assets/js/modules.js
jQuery(document).ready(function ($) {
var lightbox_elements = $('a')
.filter(function () {
return this.href.match(/#action-webinane-elementor-modal/);
})
if (lightbox_elements.length >= 1) {
lightbox_elements.on('click', function (e) {
e.preventDefault();
let href = $(this).attr('href');
let arr = href.split("|");
let url, type, title;
if (arr[1] !== undefined) {
url = arr[1];
}
if (arr[2] !== undefined && arr[2] !== 'video') {
type = arr[2];
} else {
type = '';
}
if (arr[3] !== undefined) {
title = (arr[3]) ? arr[3].replaceAll("%20", " ") : '';
} else {
title = '';
}
if (url !== undefined && $.fn.fancybox !== undefined) {
$.fancybox.open({
src: url,
type: type,
opts: {
caption: title
}
});
}
});
}
});