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 jQuery Basics (2014) Creating a Simple Lightbox A Better Caption

What Am I doing Wrong

//Problem: User when clicking on image goes to a dead end
//Solution: Create an overlay with the large image - Lightbox

var $overlay = $('');
var $image = $("");
var $caption = $("");

//An image to 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 imageLocation = $(this).attr("href");
  //Update overlay with the image linked in the link
  $image.attr("src", imageLocation);

  //Show the overlay.
  $overlay.show();

  //Get child's title attribute and set caption
  var captionText = $(this).children("img").attr("imageGallery");
  $caption.text(captionText);
});

//When overlay is clicked
$overlay.click(function(){
  //Hide the overlay
  $overlay.hide();
});

2 Answers

Stanley Thijssen
Stanley Thijssen
22,831 Points

Hi,

Your variables have no value on the top. You are inserting 3 empty strings now.

var captionText = $(this).children("img").attr("title");

this is the correct code...this code should come under the comment "//Get child's title attribute and set caption" here we are accessing the value of the 'title' attribute of the 'img' tag which is a child of 'this' (this means the imageGallery anchor) and we are assigning the returned value to the variable 'captionText' i hope you got it... please rate my answer