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 trialGary Logue
13,831 PointsImages wont appear in overlay
The code is exactly the same as his in the video but the images wont seem to appear :(
Any help would be greatly appreciated :)
var $overlay = $('<div id="overlay"></div>');
var $image = $("<img>");
$overlay.append($image);
$("body").append($overlay);
$("#imageGallery a").click(function(event) {
event.preventDefault();
var $imageLocation = $(this).attr("href");
$image.attr("scr", $imageLocation);
$overlay.show();
});
2 Answers
Steven Parker
231,269 PointsIt may not be as "exactly the same" as you think.
In the video, the click handler adds the image location to the "src" attribute (which stands for "source"). But in the code above, you add it to the "scr" attribute (not a standard attribute) instead.
Bihil Takele
19,936 Points... use "#imagegallery" instead of "#imageGallery"
Steven Parker
231,269 PointsIf you're following the video, it does need to be "#imageGallery" (with a capital "G").