Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript AJAX Basics Programming AJAX Processing JSON Data

Nicolás Melgarejo
Nicolás Melgarejo
14,154 Points

My solution Interacting with the DOM

var xhr = new XMLHttpRequest();

xhr.onreadystatechange = function () {
  if (xhr.readyState === 4) {
      var employees = JSON.parse(xhr.responseText);
      let ul = document.createElement('ul');
      let employeeList = document.getElementById('employeeList');
      ul.className = 'bulleted';
       for (let i = 0; i < employees.length; i++){
         let li = document.createElement('li')
         let name = employees[i].name; 
         let inoffice = employees[i].inoffice;

          if (inoffice === true) {
            li.className = 'in';
          } else {
            li.className = 'out';
          };

         li.textContent = name;
         ul.appendChild(li);
       };
      employeeList.append(ul);
  };
};

xhr.open('GET', 'data/employees.json');

xhr.send();