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 trialDarren Kynaston
Courses Plus Student 15,610 PointsCaption concatenation when clicking through multiple images
Hi All,
When you click through multiple images on the gallery the captions seem to concatenate.
Q - Is there a fault with MY coding && (OR) Is this a mistake in the code challenge?
My code below:
//Problem: User when clicking on image goes to a dead end
//Solution: Create an overlay with the large image - Lightbox
var $overlay = $('<div id="overlay"></div>');
var $image = $('<img>');
var $caption = $("<p></p>");
// An image to the overlay
$overlay.append($image);
// A caption to overlay
$overlay.append($caption);
// Add overlay
$("body").append($overlay);
// Capture the click event on a link to an image.
$("#imageGallery a").click(function(event){
event.preventDefault();
var href = $(this).attr("href");
console.log(href);
// Show the overlay.
$overlay.show();
// Update overlay with the image linked in the link
$image.attr('src', href);
// Get child's alt attribute and set caption
var captionText = $(this).children("img").attr("alt");
$caption.append(captionText);
});
// When overlay is clicked
// Hide the overlay
$overlay.click(function(){
$overlay.hide();
});
1 Answer
Darren Kynaston
Courses Plus Student 15,610 PointsOK I've sorted it.
Error:
$caption.append(captionText)
Answer:
$caption.text(captiontext)
Ryan Carson
23,287 PointsRyan Carson
23,287 PointsWay to go!