const params = new URLSearchParams(window.location.search); const id = params.get('routecode'); const num = params.get('routenum'); const codiceSpan = document.getElementById('codice-span'); const destSpan = document.getElementById('destinazione-span'); const pNav = document.getElementById('percorso-nav'); //Displays route code codiceSpan.textContent = id; //Nav per tornare indietro pNav.innerHTML = `
`; const urlBackend = `https://setaapi.serverissimo.freeddns.org/routestops/${id}`; //const urlBackend = `http://localhost:5001/arrivals/${codice}`; function caricadati(){ var item=[]; fetch(urlBackend) .then(response => { if (!response.ok) throw new Error("Errore di risposta nel caricamento dei dati, probabilmente il server API รจ offline."); return response.json(); }) .then(data => { item = data; }) .then(data => { const container = document.getElementById('tabella-container'); container.innerHTML = ''; // Creo tabella const table = document.createElement('table'); // Intestazione const thead = document.createElement('thead'); thead.innerHTML = `