-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
executable file
·47 lines (44 loc) · 1.59 KB
/
index.html
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
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no;" />
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<script type="text/javascript" charset="utf-8" src="phonegap.0.9.5.1.min.js"></script>
<link rel="stylesheet" type="text/css" href="jquery/jquery.mobile-1.0a4.1.css" />
<script type="text/javascript" src="jquery/jquery-1.6.1.js"></script>
<script type="text/javascript" src="main.js"></script>
<script type="text/javascript" src="jquery/jquery.mobile-1.0a4.1.js"></script>
</head>
<body onload="onBodyLoad()">
<div data-role="page" id="mainpage">
<div data-role="header">
<h1> Main Page </h1>
</div>
<div data-role="content">
<a href="#contentpage" data-role="button" onClick=populateList()> To the List Page!</a>
<button onClick=beepbeep()>Beep!</button>
</div>
<div data-role="footer">
<h1> Main Page Footer </h1>
</div>
</div>
<div data-role="page" id="contentpage">
<div data-role="header">
<h1> Content Page </h1>
</div>
<div data-role="content">
<a href="#mainpage" data-role="button" onClick=buttonDemo()> Back to Main Page </a>
<p>
<ul data-role="listview" data-theme="g" id="contentlist">
<li><a href="#">Lucey</a></li>
<li><a href="#">Lacey</a></li>
<li><a href="#">Laury</a></li>
</ul>
<p>
</div>
<div data-role="footer">
<h1> Content Page Footer </h1>
</div>
</div>
</body>
</html>