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 trialMatthew Kosloski
8,932 PointsStyles not Showing Up
I did it a bit differently, but I still get the same result; however, styles aren't showing up. It's just listing the names of the employees.
$.getJSON( "../data/employees.json", function(response) {
var statusHTML = '<ul class="bulleted">';
for(var i = 0; i < response.length; i++) {
if(response[i].inoffice) {
statusHTML += '<li id="in">';
} else {
statusHTML += '<li id="out">';
}
statusHTML += response[i].name;
statusHTML += '</li>';
}
statusHTML += '</ul>';
$("#employeeList").prepend(statusHTML);
});
1 Answer
danheffernan
10,004 PointsIt may be that you're using ID rather than Class on your list elements.