How to download jQuery?

Viewed 96373

I'm trying to download JQuery. When I click the minified version, I just get a bunch of code displayed in the browser. I don't actually download anything. What am I supposed to do? How do I download JQuery and do I need to put it where my other files are?

6 Answers

If on Ubuntu/Linux, navigate to your static/css/js folder... or wherever you want to save the file:

wget https://code.jquery.com/jquery-3.3.1.js

The file is now in your current directory.

Related