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!
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
Timothy Acker
Front End Web Development Techdegree Graduate 31,247 PointsWhy wouldn't you assign the caption text before showing the overlay?
Wouldn't it be better to add the caption text to the paragraph before showing the overlay like so...
$("#imageGallery a").click(function(event){
event.preventDefault();
var imageLocation = $(this).attr("href");
$image.attr("src", imageLocation);
var captionText = $(this).children("img").attr("alt");
$caption.text(captionText);
$overlay.show();
});
2 Answers

Steven Parker
224,807 PointsThat's not a bad idea.
But in practice, both operations will happen so quickly that the user is not likely to see a difference.
Yet my inclination would be to do it just as you are suggesting.

Timothy Acker
Front End Web Development Techdegree Graduate 31,247 PointsThanks for commenting.