window.onload = function () { var uri = "https://radiosendungen.net/index.php?ID=102&task=sendeplan&&js=1&mode=synlist&sid=1213"; var xhr = new XMLHttpRequest(); var fd = new FormData(); xhr.open("GET", uri, true); xhr.onreadystatechange = function() { if (xhr.readyState == 4 && xhr.status == 200) { document.getElementById('senderliste').innerHTML = xhr.responseText; } } xhr.send(fd); }