Skip to content

Commit 8b1e81e

Browse files
committed
Merge pull request learn-co-curriculum#2 from rocketNeck/rocketNeck-1462241559
Updated README.md
2 parents e7b5395 + 2e61308 commit 8b1e81e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ At the bottom of `index.html`, right before the closing `body` tag, we'll want t
3131
</script>
3232
```
3333

34-
Between these tags is where we want to write our inline jQuery. The script tags need to be at the bottom of the page because the code we're going to write it dependent on the `p` tag being already loaded in the browser. Our jQuery will error if there isn't a `p` tag to add text to.
34+
Between these tags is where we want to write our inline jQuery. The script tags need to be at the bottom of the page because the code we're going to write is dependent on the `p` tag being already loaded in the browser. Our jQuery will error if there isn't a `p` tag to add text to.
3535

3636
And now, in between the script tags, add the following code:
3737

@@ -46,3 +46,5 @@ The `$` tells our browser that we're using jQuery. The `("#yo")` is our jQuery s
4646
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!
4747

4848
<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>
49+
50+
<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)