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
Will Duke
5,007 Pointsj 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.
4 Answers
Will Duke
5,007 Pointsgot it. it was not working on the mac. the pc it worked fine
Malith Senanayake
12,488 PointsThe 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");
Martina Carrington
Courses Plus Student 15,807 Pointsim having the same problem as well $('#imageGallery a').click(function(event){ event.preventDefault(); var href = $(this).attr('href'); console.log(href);
Grayson Boren
2,582 Pointsyou dont need the console.log at the end martina. $('#imageGallery a').click(function(event){ event.preventDefault(); var href = $(this).attr('href'); console.log("href");
Will Duke
5,007 PointsWill Duke
5,007 Pointsstarted adding the markup on another computer besides the mac and i passed the quiz