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

HTML jQuery Basics (2014) Creating a Simple Lightbox Perform: Part 1

My Code is Identical but the event is still occuring

Hey, I'm 90% sure my code is identical to the example given, but the event is still occurring when you click on the image, and no code is popping up in the developer tool. So it's not working. Any help pointing out what I'm doing wrong would be great,

$("#imageGallery a").click(function(event){
  event.preventDefault();
  var href = $(this).attr("href");
  console.log(href);
});
James Barnett
James Barnett
39,199 Points

If it's not an issue with the id name, throw your code in a codepen and link it here so we can see the bigger picture.

2 Answers

Your code looks like its working fine here. Could it be that you put the wrong ID name in your HTML?

I have the same problem