Postingan

timer

var xhr = new XMLHttpRequest(); xhr.open('GET', '/', true); xhr.onload = function () { if (xhr.readyState == 4 && xhr.status == 200) { console.log(xhr.responseText); }; }; xhr.send();