Skip to content

Instantly share code, notes, and snippets.

@bddap
Created January 11, 2019 00:57
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 bddap/6da34e5f569075cc4f7f7c07cc51ffcb to your computer and use it in GitHub Desktop.
Save bddap/6da34e5f569075cc4f7f7c07cc51ffcb to your computer and use it in GitHub Desktop.
<script>
fetch("http://localhost:8000", {
mode: "no-cors",
}).then(() => {
console.log("done");
let t = document.createElement('div');
t.innerHTML = "done";
document.body.appendChild(t);
})
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment