Advertisement
ErolKZ

Untitled

Feb 28th, 2022
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1.  
  2. function loadRepos() {
  3.  
  4. const xhttp = new XMLHttpRequest();
  5.  
  6. xhttp.onreadystatechange = function() {
  7.  
  8. if (this.readyState === 4) {
  9.  
  10. let divElement = document.getElementById('res');
  11.  
  12. divElement.textContent = this.responseText;
  13.  
  14. }
  15.  
  16. }
  17.  
  18. xhttp.open("GET", "https://api.github.com/users/testnakov/repos", true);
  19.  
  20. xhttp.send();
  21.  
  22.  
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement