Skip to content
(function () {
function setPortfolioLabels() {
document.querySelectorAll('.elementor-widget-portfolio .elementor-post').forEach(function (post) {
const imgLink = post.querySelector('a.elementor-post__thumbnail__link');
const titleEl = post.querySelector('.elementor-portfolio-item__title');
if (!imgLink || !titleEl) return;
const title = titleEl.textContent.trim();
if (title && !imgLink.hasAttribute('aria-label')) {
imgLink.setAttribute('aria-label', title + ' ansehen');
}
});
}
document.addEventListener('DOMContentLoaded', setPortfolioLabels);
window.addEventListener('load', setPortfolioLabels);
if (window.elementorFrontend) {
jQuery(window).on('elementor/frontend/init', function () {
setPortfolioLabels();
});
}
})();