Skip to content

Instantly share code, notes, and snippets.

@Bradan
Created August 14, 2020 19:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Bradan/6ed7a2e681765128e6a094b6f3c66ffe to your computer and use it in GitHub Desktop.
Save Bradan/6ed7a2e681765128e6a094b6f3c66ffe to your computer and use it in GitHub Desktop.
function init() {
fetch("fetch.xml").then(r => r.text()).then(t => console.log(t));
}
window.addEventListener("load", init);
<?xml version="1.0" encoding="UTF-8"?>
<root>
<test>Hi</test>
</root>
<!DOCTYPE html>
<html>
<head>
<title>Test</title>
<script type="text/javascript" src="control.js"></script>
</head>
<body>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment