jQuery(function($){
$(document).on('click', 'body:not(.elementor-editor-active) .make-column-clickable-elementor', function(e){
var wrapper=$(this),
url=wrapper.data('column-clickable');
if(url){
if($(e.target).filter('a, a *, .no-link, .no-link *').length){
return true;
}
if(url.match("^#elementor-action") ){
var hash=url;
var hash=decodeURIComponent(hash);
if(hash.includes("elementor-action:action=popup:open")||hash.includes("elementor-action:action=lightbox") ){
if(0===wrapper.find('#make-column-clickable-open-dynamic').length){
var linkElement=$('<a>', {
id: 'make-column-clickable-open-dynamic',
style: 'display: none !important;',
href: url,
text: 'Open dynamic content'
});
wrapper.append(linkElement);
}
wrapper.find('#make-column-clickable-open-dynamic').click();
return true;
}
return true;
}
if(url.match("^#") ){
var hash=url;
$('html, body').animate({
scrollTop: $(hash).offset().top
}, 800, function(){
window.location.hash=hash;
});
return true;
}
window.open(url, wrapper.data('column-clickable-blank') );
return false;
}});
});