Skip to content

Instantly share code, notes, and snippets.

@cayetanobv
Last active November 29, 2018 09:25
Show Gist options
  • Save cayetanobv/fbd181b63eb53f9c80ba205a76dc6b89 to your computer and use it in GitHub Desktop.
Save cayetanobv/fbd181b63eb53f9c80ba205a76dc6b89 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<script>
var xmlHttp = new XMLHttpRequest();
xmlHttp.onreadystatechange = function() {
console.log(xmlHttp.status);
}
xmlHttp.open("GET", 'https://reveal-api-demo.geographica.gs/', true);
xmlHttp.send(null);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment