1<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
1You have quite a few options
2
3You can get the whole source
4Uncompressed dev: https://code.jquery.com/jquery-3.4.1.js
5Compressed production: https://code.jquery.com/jquery-3.4.1.min.js
6You the simply save the code into a Javascript file and include it in the usual way
7<script type="text/javascript" src="jquery.js"></script>
8
9Or point to a CDN, such as Google's
10<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
11
12You can get it using NPM, Yarn or Bower
13npm install jquery
14yarn add jquery
15bower install jquery
16
17You can even get the latest builds from GitHub
18git clone git://github.com/jquery/jquery.git
1//cdn
2https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js
3
4//file compressed
5https://code.jquery.com/jquery-3.6.0.min.js
6
7
8//file uncompressed
9https://code.jquery.com/jquery-3.6.0.js
1jQuery is a fast, small, and feature-rich JavaScript library.
2It makes things like HTML document traversal and manipulation,
3event handling, animation, and Ajax much simpler with an easy-to-use
4API that works across a multitude of browsers.
5
6With a combination of versatility and extensibility,
7jQuery has changed the way that millions of people write JavaScript.