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 Programming AJAX Solution

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

MY SOLUTION

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();

//


var xhrRooms = new XMLHttpRequest();

xhrRooms.onreadystatechange = function () {
  if (xhrRooms.readyState === 4) {
      var rooms = JSON.parse(xhrRooms.responseText);
      let ul = document.createElement('ul');
      let roomList = document.getElementById('roomList');
      ul.className = 'rooms';
       for (let i = 0; i < rooms.length; i++){
         let li = document.createElement('li')
         let room = rooms[i].room; 
         let available = rooms[i].available;

          if (available === true) {
            li.className = 'empty';
          } else {
            li.className = 'full';
          };

         li.textContent = room;
         ul.appendChild(li);
       };
      roomList.append(ul);
  };
};

xhrRooms.open('GET', 'data/rooms.json');

xhrRooms.send();