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 trialVic Mercier
3,276 PointsHow would I do that:download the library and include the files in your project.
That isn't really matter but I prefer to know how to do it
Alexi O'Hearn
3,662 PointsAlexi O'Hearn
3,662 PointsYou have two options: You can either add the script source to the jQuery CDN or download the library. If you download the library, you would still include a script tag at the bottom with it as the source, except in this case you would just write a relative path since it is in your project.
Example: <script src="./jquery-3.2.1.js"></script>