Skip to content

Commit 944fd36

Browse files
committed
add explanation of CDN
1 parent 7f90c75 commit 944fd36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ We're going to use jQuery to add some text to our HTML page.
1313

1414
### Include jQuery Link
1515

16-
In order to start writing jQuery, we need to include the library in our HTML. You'll want to copy the code below and paste it `html/index.html` in between your head tags. This script tag links our HTML file to the jQuery library.
16+
In order to start writing jQuery, we need to include the library in our HTML. One way to do this would be to download a copy of the jQuery library and include it with our project. We can also link to the library hosted by a content delivery network, or CDN. For this example, we'll be loading jQuery from Google's CDN. You'll want to copy the code below and paste it `html/index.html` in between your head tags. This script tag links our HTML file to the jQuery library.
1717

1818
```html
1919
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js"></script>

0 commit comments

Comments
 (0)