mirror of
https://github.com/healthchecks/healthchecks.git
synced 2024-11-23 07:57:39 +00:00
4 lines
165 B
Plaintext
4 lines
165 B
Plaintext
// the server returns appropriate CORS headers so cross-domain AJAX requests work:
|
|
var xhr = new XMLHttpRequest();
|
|
xhr.open('GET', 'PING_URL', true);
|
|
xhr.send(null); |