Skip to content

Instantly share code, notes, and snippets.

@night-fury-rider
Created June 24, 2020 03:32
Show Gist options
  • Save night-fury-rider/92422fa7c1290e2fe9beef73d4c4b90a to your computer and use it in GitHub Desktop.
Save night-fury-rider/92422fa7c1290e2fe9beef73d4c4b90a to your computer and use it in GitHub Desktop.
Basic HTTP Call
var uvHttp = new XMLHttpRequest();
uvHttp.onreadystatechange = function() {
console.log('HTTP state change callback executed');
};
uvHttp.open("GET", "/getUser", true);
uvHttp.send();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment