New Page2
Ahhhem
Loading table...
<script>
fetch('https://wiki.vatsim-scandinavia.org/link/1039#bkmrk-atis-frekvens-bla-bl')
.then(response => response.text())
.then(data => {
const parser = new DOMParser();
const doc = parser.parseFromString(data, 'text/html');
const table = doc.querySelector('table'); // Adjust selector as needed
document.getElementById('table-container').innerHTML = table.outerHTML;
})
.catch(error => console.error('Error:', error));
</script>