Guest User

Untitled

a guest
Aug 17th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. function fetchAndPopulate(dispFunc,params) {
  2.  
  3. xhr=new XMLHttpRequest();
  4. xhr.open("GET",params.fetchURL);
  5. xhr.send(null);
  6.  
  7. xhr.onreadystatechange=function(){
  8. if(xhr.readyState==4) {
  9. response=xhr.responseText;
  10. dispFunc(params,response);
  11. }
  12. }
  13. }
Add Comment
Please, Sign In to add comment