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

Development Tools Introduction to Front End Performance Optimization Combine and Minify Assets Optimize JavaScript

Michael Pashkov
Michael Pashkov
22,024 Points

Hi guys! There is a question. If I change older version jQuery (hosted on the site) to new version (hosted on Google).

Hi guys! There is a question. If I change older version (hosted on the site) to new version (hosted on Google). Should I change number of version in the link or older code would be perfectly working with newer versions? Was <script src="js/jquery-2.1.3.js"></script> Now <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> Should I change 2.2.4 to 2.1.3. in the new link? To be like <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>.

1 Answer

Steven Parker
Steven Parker
229,744 Points

Google might not provide the exact version used in the course, so there's no guarantee the link would work if you modify it. But I wouldn't expect you to notice any differences in operation between the course version and the one Google currently provides.