Created
March 15, 2022 15:06
-
-
Save sylr/76e59c52a42e3dcf91b382748c0e89e8 to your computer and use it in GitHub Desktop.
mdpJBqv
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div>pwet</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function reqListener () { | |
console.log(this.responseText); | |
} | |
var oReq = new XMLHttpRequest(); | |
oReq.onload = reqListener; | |
oReq.open("get", "https://backend.dogmatix.dev:4443/artexlearn-data.json", true); | |
oReq.send(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment