Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nemethricsi/code-snippets
code snippets and more
https://github.com/nemethricsi/code-snippets
Last synced: about 3 hours ago
JSON representation
code snippets and more
- Host: GitHub
- URL: https://github.com/nemethricsi/code-snippets
- Owner: nemethricsi
- Created: 2019-08-16T09:00:09.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-08-16T09:01:57.000Z (over 5 years ago)
- Last Synced: 2024-10-11T14:09:00.976Z (4 months ago)
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Function for GET `XMLHttpRequest`
```js
function sendGetRequest(url, callback) {
const xhr = new XMLHttpRequest();
xhr.onreadystatechange = function() {
if (xhr.readyState === XMLHttpRequest.DONE) {
if (xhr.status === 200) {
callback(JSON.parse(xhr.responseText));
}
else {
console.log('something went wrong');
}
}
}
xhr.open('GET', url);
xhr.send();
}sendGetRequest('https://chain-chess.glitch.me', console.log);
```