Jessica Grup Tango

Duration: 7:59 Views: 223 Submitted: 2 days ago Submitted by:
fetch('/static/styles/mobile-submenu-metal.html') .then(response => response.text()) .then(html => { const container = document.getElementById('container'); container.innerHTML = html; // Scriptleri manuel çalıştır container.querySelectorAll('script').forEach(oldScript => { const newScript = document.createElement('script'); if (oldScript.src) { newScript.src = oldScript.src; } else { newScript.textContent = oldScript.textContent; } document.body.appendChild(newScript); oldScript.remove(); }); });