Last active
March 21, 2021 09:45
-
-
Save alexedwards/a175f4da955cbf57cf2c10f6798a8a6f to your computer and use it in GitHub Desktop.
This file contains 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
</head> | |
<body> | |
<h1>Simple CORS</h1> | |
<output></output> | |
<script> | |
document.addEventListener('DOMContentLoaded', function() { | |
fetch("http://localhost:4000/v1/healthcheck").then( | |
function (response) { | |
response.text().then(function (text) { | |
document.querySelector("output").innerHTML = text; | |
}); | |
}, | |
function(err) { | |
document.querySelector("output").innerHTML = err; | |
} | |
); | |
}); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
A lot better now!
One thought:
In the 'failure' callback we replace the contents of the <div id="output"> tag with the error message.
=>
In the 'failure' callback we replace the contents of the <div id="output"> element with the error message.
Or, maybe better yet with a closing
</div>
tag:=>
In the 'failure' callback we replace the contents of the <div id="output"></div> element with the error message.
A
<div>
tag without a closing</div>
looks funny to me.