Pular para o conteúdo

reverssao-laqueadura

Reversão de Laqueadura

Deixe um comentário

document.addEventListener('DOMContentLoaded', function() { // Corrige aria-label em todos os links de ícones sociais sem texto discernível var socialMap = { 'youtube.com': 'Canal do YouTube da Fértil Reprodução Humana', 'facebook.com': 'Página do Facebook da Fértil Reprodução Humana', 'instagram.com': 'Perfil do Instagram da Fértil Reprodução Humana', 'twitter.com': 'Twitter da Fértil Reprodução Humana', 'linkedin.com': 'LinkedIn da Fértil Reprodução Humana', 'tiktok.com': 'TikTok da Fértil Reprodução Humana' };document.querySelectorAll('a').forEach(function(link) { var hasText = link.innerText.trim().length > 0; var hasAria = link.getAttribute('aria-label'); var hasTitle = link.getAttribute('title'); var hasImgAlt = link.querySelector('img[alt]:not([alt=""])'); if (!hasText && !hasAria && !hasTitle && !hasImgAlt) { var href = link.href || ''; var label = ''; for (var domain in socialMap) { if (href.indexOf(domain) !== -1) { label = socialMap[domain]; break; } } if (!label && href) { // Label genérico baseado no domínio try { label = 'Link externo: ' + new URL(href).hostname; } catch(e) { label = 'Link'; } } if (label) { link.setAttribute('aria-label', label); } } // Também corrigir imagens dentro de links que têm alt vazio var img = link.querySelector('img[alt=""]'); if (img && link.getAttribute('aria-label')) { var altText = link.getAttribute('aria-label'); img.setAttribute('alt', altText); } }); });
Powered by Joinchat