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 (retiring) AJAX and APIs Displaying the Photos

Images will not fully render on the screen.

All the code runs smoothly and i checked the console for any errors, but i have not found any. Is anyone experiencing this same issue? Additionally does anyone have a possible solution as to why the images only load about 20px before stopping.

4 Answers

Can you provide a code snippet?

function displayPhotos(data){ var photohtml = '<ul>';

  $.each(data.items, function(i, photo){
         photohtml +='<li class = "grid-25 tablet-grid-50">';
    photohtml+= `<a href="${photo.link}" class="image">`;
    photohtml+=`<img src="${photo.media.m}" class="image"></a>`;
    photohtml +='</li>'
         });

photohtml +='</ul>';
  $('#photos').html(photohtml);
}

After some digging through my code I found the error on the photoHTML img tag i added a class="image" when that class should only have been on the <a>! thanks for the help.