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

Solution using $.ajax();

$.ajax('data/rooms.json', {
    type : "GET",
    dataType : 'json',
    success : function (response) {
      let statusHTML = '<ul class="rooms">';
      $.each(response, function (index, room) {
        if (room.available) {
          statusHTML += '<li class="full">';
        } else if (!room.available) {
          statusHTML += '<li class="empty">';
        }
        statusHTML += room.room += '</li>';
      });
      statusHTML += '</ul>';
      $('#roomList').html(statusHTML);
    } // end success :
  }); // end $.ajax

1 Answer

Steven Parker
Steven Parker
229,644 Points

It's not clear what this is referring to, can you provide a link?

Also, do you have a question about this?

:warning: If you're just posting a code solution to a challenge, that is strongly discouraged by Treehouse and may be subject to redaction by staff or moderators.