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 trialBob Sutherton
20,160 Pointscode 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
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
Mitchell Etter
8,603 PointsHere 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
20,160 PointsDOH! Thanks. It is a little confusing to me that the page I linked to says CDN but it's not there.