Skip to content

Instantly share code, notes, and snippets.

@loristissino
Created December 20, 2019 09:56
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 loristissino/c162bb43edccdf4e2721860ce5ca368b to your computer and use it in GitHub Desktop.
Save loristissino/c162bb43edccdf4e2721860ce5ca368b to your computer and use it in GitHub Desktop.
javascript http request
var url = "https://example.com/";
const http = new XMLHttpRequest();
http.open("GET", url);
http.send();
http.onload = function() {
var temperature = http.responseText;
temperatureEl.innerHTML = temperature;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment