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 trialJack Kenyon
3,344 PointsMy 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);
});
2 Answers
Jacob M.
5,122 PointsYour code looks like its working fine here. Could it be that you put the wrong ID name in your HTML?
Abraham Thomas
2,406 PointsI have the same problem
James Barnett
39,199 PointsJames Barnett
39,199 PointsIf 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.