Source code
Revision control
Copy as Markdown
Other Tools
function doXHR(uri) {
try {
var xhr = new XMLHttpRequest();
xhr.open("GET", uri);
xhr.send();
} catch (ex) {}
}
doXHR(
);
doXHR(
);
fetch(
);
fetch(
);
navigator.sendBeacon(
);
navigator.sendBeacon(
);