jqueryHow do I use a jQuery CDN?
Using a jQuery CDN is a simple way to add jQuery to your project. You can add the CDN to your HTML page by including the following code in the <head>
element:
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
This code will load the jQuery library from the jQuery CDN.
The code has four parts:
script
- This is an HTML tag that tells the browser to load a script.src
- This is an attribute of thescript
tag that specifies the source of the script. In this example, the source is the jQuery CDN.integrity
- This is an attribute of thescript
tag that specifies a cryptographic hash of the code. This is used to verify that the code has not been modified.crossorigin
- This is an attribute of thescript
tag that specifies the origin of the code.
Once the code is included in your HTML page, you can use jQuery as you normally would. For example, you could use jQuery to select an element and change its text:
$('#myElement').text('Hello World!');
This code will change the text of the element with the id myElement
to Hello World!
.
For more information on using a jQuery CDN, see jQuery's documentation.
More of Jquery
- How do I use jQuery ZTree to create a hierarchical tree structure?
- How do I create a quiz using the jQuery plugin?
- How can I use jQuery to zoom an image when the user hovers over it?
- How do I create a jQuery Yes/No dialog?
- How can I get the y position of an element using jQuery?
- How can I use JQuery with Yii2?
- How can I convert XML data to JSON using jQuery?
- How do I use a jQuery queue?
- How do I use jQuery to validate a form?
- How do I quickly get started with jQuery?
See more codes...