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 jQuery Basics (2014) Introduction to jQuery Include jQuery in a Project

Bob Sutherton
Bob Sutherton
20,160 Points

code challenge > include jquery in a project

The code challenge

http://teamtreehouse.com/library/include-jquery-in-a-project

asks me to link to the JQUERY CDN from jquery.com

http://code.jquery.com/

However, I do not see a link on that page. It is just a bunch of downloads. I thought I was looking for a link to copy and paste in.

2 Answers

Here is the line of code to include:

<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>

It can be found at http://jquery.com/download/ If you scroll down to "Using jQuery with a CDN", it is the first line of code in the box.

Bob Sutherton
Bob Sutherton
20,160 Points

DOH! Thanks. It is a little confusing to me that the page I linked to says CDN but it's not there.