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
});
});
});