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 trialAakash Srivastav
Full Stack JavaScript Techdegree Student 11,638 Pointsdownloading jquery file
When I am clicking on "minified" , I am getting this-
this
Just infinite bunch of unknown characters.
1 Answer
Steven Parker
231,261 PointsThey 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.
Aakash Srivastav
Full Stack JavaScript Techdegree Student 11,638 PointsOh . Thanks :) . But the way I have just asked a question in community and need your help .
Will Hernandez
3,170 PointsWill Hernandez
3,170 Pointsminified 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.