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 Perform: Part 1

I had trouble understanding what we were checking in the console for the jQuery video "Perform Part 1"...

I wasn't understanding why we were checking the image names (or was it their pathways?) by clicking on them using the Chrome Developer Console. Wouldn't we already know by simply hovering over the image where the image goes to (if that was the intent of this exercise)?

Basically I have no idea what Andrew was doing in this video and why. Would someone mind breaking this down? Thanks!

1 Answer

Steven Parker
Steven Parker
229,732 Points

:point_right: The console was used to see the outputs of the console.log function.

The purpose of the log function was to show that the proper value had been returned by the jQuery call.

You are correct that the browser displays the link target on hover, but the console display was to show that the target had been successfully assigned to the local variable href inside the event handler code.