Skip to content

Commit c2fc503

Browse files
authored
Add link to Help Center article
Closes learn-co-curriculum#8
1 parent b190ab1 commit c2fc503

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

README.md

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

1313
### Include jQuery Link
1414

15-
This lesson doesn't render as a lab, but there are files within this repository you'll need to code along. Click on the Github icon in Learn, and fork and clone this repository into your IDE.
15+
This lesson doesn't render as a lab, but there are files within this repository you'll need to code along. Click on the GitHub icon in Learn, and [fork and clone this repository into your IDE](http://help.learn.co/workflow-tips/github/how-to-manually-open-a-lab).
1616

1717
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. Copy the code below and paste it in `html/index.html` at the very bottom of the HTML `body` (right above the `</body>` close tag). This `script` tag links our HTML file to the jQuery library.
1818

@@ -50,7 +50,3 @@ The `$` is just a function — it's equivalent to `jQuery` (which is also a func
5050
Don't worry too much about the mechanics of these selectors and functions, we'll go over those in way more detail. Just notice that the text appeared on the screen, even though we didn't explicitly add it between the `p` tags.
5151

5252
<p data-visibility='hidden'>View <a href='https://learn.co/lessons/js-jquery-modify-html-readme' title='Modify HTML With jQuery'>Modify HTML With jQuery</a> on Learn.co and start learning to code for free.</p>
53-
54-
<p class='util--hide'>View <a href='https://learn.co/lessons/js-jquery-modify-html-readme'>Modifying HTML with jQuery</a> on Learn.co and start learning to code for free.</p>
55-
56-
<p class='util--hide'>View <a href='https://learn.co/lessons/js-jquery-modify-html-readme'>Modifying HTML with jQuery </a> on Learn.co and start learning to code for free.</p>

0 commit comments

Comments
 (0)