-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjq-load2.html
More file actions
35 lines (28 loc) · 913 Bytes
/
jq-load2.html
File metadata and controls
35 lines (28 loc) · 913 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html>
<head>
<title>JavaScript & jQuery - Chapter 8: Ajax & JSON - .load() page 2 of 3</title>
<link rel="stylesheet" href="css/main.css" />
</head>
<body>
<section id="content">
<div id="container" class="location">
<h2>The bus stops here.</h2>
<div class="event">
<img src="img/map-ca.png" alt="Map of San Francisco" />
<p><b>SAN FRANCISCO, CA</b><br />May 1</p>
</div>
<div class="event">
<img src="img/map-tx.png" alt="Map of Texas" />
<p><b>AUSTIN, TX</b><br />May 15</p>
</div>
<div class="event">
<img src="img/map-ny.png" alt="Map of New York" />
<p><b>NEW YORK, NY</b><br />May 30</p>
</div>
</div>
</section>
<script src="js/jquery-1.11.0.min.js"></script>
<script src="js/jq-load.js"></script>
</body>
</html>