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 trialkabir k
Courses Plus Student 18,036 PointsMy employee list is not showing up in the preview
I followed along with the video but for some reason my employee list is not showing up in the preview.
Can someone take a look at it and let me know what's wrong?
$(document).ready(function () {
var url = '../data/employees.json';
$.getJSON(url, function (response) {
var statusHTML = '<ul class="bulleted">';
$.each(response, function (index, employee) {
if (employee.inoffice === true) {
statusHTML += <li class="in">;
} else {
statusHTML += <li class="out">;
}
statusHTML += employee.name + '</li>';
});
statusHTML += '</ul>';
$('#employeeList').html(statusHTML);
}); // end getJSON
}); // end ready
2 Answers
kabir k
Courses Plus Student 18,036 PointsNever mind. I found the problem. I forgot to put the <li> tags in the if/else statements in quotes.
Marcus Parsons
15,719 PointsHey Kabir,
It looks like you're missing quotes around the statusHTML
inside of the each
function. Wrap those in single quotes and you should be good to go.
$(document).ready(function () {
var url = '../data/employees.json';
$.getJSON(url, function (response) {
var statusHTML = '<ul class="bulleted">';
$.each(response, function (index, employee) {
if (employee.inoffice === true) {
//added single quotes
statusHTML += '<li class="in">';
} else {
//added single quotes
statusHTML += '<li class="out">';
}
statusHTML += employee.name + '</li>';
});
statusHTML += '</ul>';
$('#employeeList').html(statusHTML);
}); // end getJSON
}); // end ready
kabir k
Courses Plus Student 18,036 PointsThanks, Marcus. Yeah, I realized that as well. Thanks, anyway.
Marcus Parsons
15,719 PointsOh haha I see your comment now. Glad you fixed it, though!
kabir k
Courses Plus Student 18,036 PointsSame here. Much appreciated.