This content is password protected. To view it please enter your password below:

document.addEventListener('DOMContentLoaded', function() { var galleryLinks = document.querySelectorAll('.elementor-gallery-item a'); galleryLinks.forEach(function(link) { link.addEventListener('mouseover', function(event) { event.preventDefault(); // Prevent the default browser behavior event.stopPropagation(); // Stop the event from propagating further link.removeAttribute('title'); // Remove the title attribute }); }); });