Skip to content

Instantly share code, notes, and snippets.

@BMU-Verlag
Created August 3, 2020 08:25
Show Gist options
  • Save BMU-Verlag/dbd46c7c1b5be1e1715004e92448b9ff to your computer and use it in GitHub Desktop.
Save BMU-Verlag/dbd46c7c1b5be1e1715004e92448b9ff to your computer and use it in GitHub Desktop.
function laden() {
let ajaxObj = new XMLHttpRequest();
ajaxObj.onreadystatechange = ausgeben;
ajaxObj.open("GET", "daten.txt", true);
ajaxObj.send();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment