There are several ways to start using jQuery on your web site. You can:
There are two versions of jQuery available for downloading:
Both versions can be downloaded from jQuery.com.
The jQuery library is a single JavaScript file, and you reference it with the HTML <script> tag (notice that the <script> tag should be inside the <head> section):
Tip: Place the downloaded file in the same directory as the pages where you wish to use it.
| Do you wonder why we do not have type="text/javascript" inside the <script> tag? This is not required in HTML5. JavaScript is the default scripting language in HTML5 and in all modern browsers! |
If you don't want to download and host jQuery yourself, you can include it from a CDN (Content Delivery Network).
Both Google and Microsoft host jQuery.
To use jQuery from Google or Microsoft, use one of the following:
| Get the latest available version with Google CDN: If you look at the Google URL above - the version of jQuery is specified in the URL (1.9.1). If you would like to use the latest version of jQuery, you can either remove a number from the end of the version string (for example 1.9), then Google will return the latest version available in the 1.9 series (1.9.0, 1.9.1, etc.), or you can take it up to the whole number (1), and Google will return the latest version available in the 1 series (from 1.1.0 to 1.9.9). |
| One big advantage of using the hosted jQuery from Google or Microsoft: Many users already have downloaded jQuery from Google or Microsoft when visiting another site. As a result, it will be loaded from cache when they visit your site, which leads to faster loading time. Also, most CDN's will make sure that once a user requests a file from it, it will be served from the server closest to them, which also leads to faster loading time. |
Your message has been sent to W3Schools.