blob: fbe0204478c0963a3d31c19b56bdf48ee03def4e [file] [log] [blame]
<script>
var xhr = new XMLHttpRequest();
xhr.open("GET", "./get.txt", true);
xhr.onreadystatechange = function () {
if (xhr.readyState != 4)
return;
xhr.open("GET", "./get.txt", true);
xhr.send(null);
};
xhr.send(null);
</script>