Skip to content

Commit d8a8b8e

Browse files
committed
About: Added warning divs where appropriate
Closes jquerygh-674
1 parent 3754358 commit d8a8b8e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

page/about-jquery/how-jquery-works.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ This is a basic tutorial, designed to help you get started using jQuery. If you
2828

2929
The `src` attribute in the `<script>` element must point to a copy of jQuery. Download a copy of jQuery from the [Downloading jQuery](http://jquery.com/download/) page and store the `jquery.js` file in the same directory as your HTML file.
3030

31-
*Note: When you download jQuery, the file name may contain a version number, e.g., `jquery-x.y.z.js`. Make sure to either rename this file to `jquery.js` or update the `src` attribute of the `<script>` element to match the file name.*
31+
<div class="warning">**Note**: When you download jQuery, the file name may contain a version number, e.g., `jquery-x.y.z.js`. Make sure to either rename this file to `jquery.js` or update the `src` attribute of the `<script>` element to match the file name.</div>
3232
3333
### Launching Code on Document Ready
3434
@@ -117,7 +117,7 @@ The following example illustrates the click handling code discussed above, embed
117117
118118
### Adding and Removing an HTML Class
119119
120-
**Important:** *You must place the remaining jQuery examples inside the `ready` event so that your code executes when the document is ready to be worked on.*
120+
<div class="warning">**Important:** You must place the remaining jQuery examples inside the `ready` event so that your code executes when the document is ready to be worked on.</div>
121121
122122
Another common task is adding or removing a class.
123123

0 commit comments

Comments
 (0)