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

j query basics On line 7, set href to be the value of the href attribute of the clicked link. Keep getting oops message

I thought the href was the id of the image gallery and the a tag? "#imageGallery a" I cant figure out how to set the value of the href attribute of the clicked link.

started adding the markup on another computer besides the mac and i passed the quiz

4 Answers

got it. it was not working on the mac. the pc it worked fine

The following code worked for me. martina: try removing 'console.log(href);' part in your code.

$("#imageGallery a").click(function(event){ event.preventDefault(); var href = $(this).attr("href");

im having the same problem as well $('#imageGallery a').click(function(event){ event.preventDefault(); var href = $(this).attr('href'); console.log(href);

you dont need the console.log at the end martina. $('#imageGallery a').click(function(event){ event.preventDefault(); var href = $(this).attr('href'); console.log("href");