File tree 2 files changed +24
-4
lines changed
2 files changed +24
-4
lines changed Original file line number Diff line number Diff line change @@ -56,9 +56,9 @@ $( "#b" ).load( "article.html #target" );
56
56
</longdesc >
57
57
<note id =" same-origin-policy" type =" additional" />
58
58
<example >
59
- <desc >Load the main page's footer navigation into an ordered list.</desc >
59
+ <desc >Load another page's list items into an ordered list.</desc >
60
60
<code ><![CDATA[
61
- $( "#new-nav " ).load( "/ #jq-footerNavigation li" );
61
+ $( "#new-projects " ).load( "/resources/load.html #projects li" );
62
62
]]> </code >
63
63
<css ><![CDATA[
64
64
body {
@@ -67,8 +67,8 @@ $( "#new-nav" ).load( "/ #jq-footerNavigation li" );
67
67
}
68
68
]]> </css >
69
69
<html ><![CDATA[
70
- <b>Footer navigation :</b>
71
- <ol id="new-nav "></ol>
70
+ <b>Projects :</b>
71
+ <ol id="new-projects "></ol>
72
72
]]> </html >
73
73
</example >
74
74
<example >
Original file line number Diff line number Diff line change
1
+ <!doctype html>
2
+ < html lang ="en ">
3
+ < head >
4
+ < meta charset ="utf-8 ">
5
+ < title > Sample Page</ title >
6
+ </ head >
7
+ < body >
8
+
9
+ < h1 > Popular jQuery Projects</ h1 >
10
+
11
+ < ul id ="projects ">
12
+ < li > jQuery</ li >
13
+ < li > jQuery UI</ li >
14
+ < li > jQuery Mobile</ li >
15
+ < li > QUnit</ li >
16
+ < li > Sizzle</ li >
17
+ </ ul >
18
+
19
+ </ body >
20
+ </ html >
You can’t perform that action at this time.
0 commit comments