Hi Everyone!

In the next few lectures, as you're learning about jQuery, Colt's output in the console will look a little bit different than yours. From what I can tell this is due to updates in the chrome browser.

Your output will look different because chrome is showing you the jQuery object, not the element that you selected. In order to view the element you must access it via $('div')[0]; 

You can read more about this here, including how to iterate over a collection of elements and log them to the console.

Additionally, please be sure to use the .min version of jQuery in your projects, not the .slim version as it doesn't include all of jQuery's features which are necessary for upcoming exercises/lectures.

Thanks,
Ian