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

FYI: CDN Snippets for JQuery are on https://code.jquery.com/ - also, don't use jQuery slim for exercises!

In the video, Andrew shows us where to grab the code snippet we need to integrate jQuery into our index.html file. The location for the snippet's changed and it's somewhat hard to find.

Instead, you can grab it here: https://code.jquery.com/

Click on one of the links for the version of jQuery you want and a modal will open with the code snippet that you can copy and paste right into your index.html file.

For the exercises, use either the uncompressed or minified versions of jQuery. Avoid using jQuery slim (minified or uncompressed) as the slim version removes several functions that's needed to complete the tutorial, including animations! I started with slim and spent a good 15 minutes trying to figure out why I couldn't get my "It's a trap!" text to animate in.

For a full listing of functions removed, check out http://stackoverflow.com/questions/35424053/what-are-the-differences-between-normal-and-slim-package-of-jquery.