document.addEventListener("DOMContentLoaded", function() { // Hier ersetzen wir die Links der Flaggen const langLinks = { 'es': 'https://reospain.com/', 'en': 'https://reo-usa.com/', }; document.querySelectorAll('a[href]').forEach(link => { const href = link.getAttribute('href'); // Beispiel: prüft auf Domains wie reo-turkey.com if (href.includes('100-reospain.de')) link.setAttribute('href', langLinks.es); if (href.includes('100-reo-usa.de')) link.setAttribute('href', langLinks.en); }); });

This content is password-protected. To view it, please enter the password below.