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 jQuery Basics Working with jQuery Collections Conclusion

Aakash Srivastav
seal-mask
.a{fill-rule:evenodd;}techdegree
Aakash Srivastav
Full Stack JavaScript Techdegree Student 11,638 Points

downloading jquery file

When I am clicking on "minified" , I am getting this-
this
Just infinite bunch of unknown characters.

Will Hernandez
Will Hernandez
3,170 Points

minified code is supposed to look this way. If your having trouble accessing jquery I've included a few ways I got it to work.

https://code.jquery.com/ if attempting to access the cdn you would left click on minified and copy and paste the entire script into your html doc.

http://jquery.com/download/ if you're looking to download the jquery file and store locally, what I did was right click on the download link and used the "save link as" option. Sorry if this still doesn't answer your question and the problem you are having is more complex.

1 Answer

Steven Parker
Steven Parker
229,644 Points

They aren't "unknown", just mashed together with spaces and other non-essentials removed.

That's what "minified" code looks like: good for the computer (much more compact), but terrible for humans.