Beitrag von Sextingarea ()
Dieser Beitrag wurde vom Autor gelöscht ().
// Prüfen, ob die aktuelle Seite eine der spezifischen Forum-URLs ist if (window.location.href.includes("/forum/board/318-girls-suchen-boys-per-whatsapp/") || window.location.href.includes("/forum/board/341-boys-suchen-girls-per-whatsapp/") || window.location.href.includes("/forum/board/342-girls-suchen-girls-per-whatsapp/")) { // Dein PushState JavaScript hier einfügen function updateURL(url) { if (history.pushState) { history.pushState(null, null, url); } else { window.location.hash = url; } } document.querySelectorAll('.forum-link').forEach(link => { link.addEventListener('click', (event) => { event.preventDefault(); const newUrl = link.getAttribute('href'); updateURL(newUrl); loadContent(newUrl); }); }); function loadContent(url) { fetch(url) .then(response => response.text()) .then(data => { document.querySelector('#content').innerHTML = data; }) .catch(error => console.error('Fehler beim Laden des Inhalts:', error)); } window.onpopstate = function(event) { const currentUrl = window.location.href; loadContent(currentUrl); }; }