Optometrie

const observer = new MutationObserver(function () { document.querySelectorAll('#sbi_images img.sbi_photo_img').forEach(function(img) { img.removeAttribute('alt'); }); }); document.addEventListener('DOMContentLoaded', function () { const feedContainer = document.querySelector('#sbi_images'); if (feedContainer) { observer.observe(feedContainer, { childList: true, subtree: true }); document.querySelectorAll('#sbi_images img.sbi_photo_img').forEach(function(img) { img.removeAttribute('alt'); }); } });