Skip to content

Instantly share code, notes, and snippets.

@akhyaruu
Created September 12, 2019 15:06
Show Gist options
  • Save akhyaruu/5ed7c847c2a0fc42e805ab45af721d12 to your computer and use it in GitHub Desktop.
Save akhyaruu/5ed7c847c2a0fc42e805ab45af721d12 to your computer and use it in GitHub Desktop.
xhr.onload = function () {
if (this.status == 200) {
document.getElementById('text').innerHTML = this.responseText;
} else if (this.status == 404) {
document.getElementById('text').innerHTML = 'Not Found';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment