Skip to content

Instantly share code, notes, and snippets.

@BMU-Verlag
Created August 3, 2020 08:25
Embed
What would you like to do?
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