-
Notifications
You must be signed in to change notification settings - Fork 1
/
osdi2.html
83 lines (76 loc) · 3.23 KB
/
osdi2.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html>
<head>
<title>An html page</title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css" />
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js"></script>
</head>
<body>
<!-- Start of first page -->
<div data-role="page" id="newrecord">
<div data-role="header">
<h1>Foo</h1>
</div>
<!-- /header -->
<div data-role="content">
<p>I'm first in the source order so I'm shown as the page.</p>
<p>View internal page called <a href="#localstore">bar</a>
</p>Scratch pad
<p id='status'>Ready</p>
<div class="container">
<form id="myForm">First name:
<input type="text" id="first_name">Last name:
<input type="text" id="last_name">Email:
<input type="text" id="email">Industry:
<select id="industry">
<option value="technology">Technology</option>
<option value="finance">Finance</option>
<option value="law">Law</option>
<option value="medicine">Medicine</option>
</select>
<input id="btnProcess" type="button" value="Process Form">
<input id="btnSave" type="button" value="Save To Local Storage">
</form>
</div>
<!-- /content -->
<div data-role="footer">
<div data-role="navbar">
<ul>
<li><a href="#newrecord">New Record</a>
</li>
<li><a href="#localstore">Local Store</a>
</li>
</ul>
</div>
<!-- /navbar -->
</div>
<!-- /footer -->
</div>
<!-- /page -->
<!-- Start of second page -->
<div data-role="page" id="localstore">
<div data-role="header">
<h1>Bar</h1>
</div>
<!-- /header -->
<div data-role="content">
<p>I'm the second in the source order so I'm hidden when the page loads. I'm just shown if a link that references my id is beeing clicked.</p>
<p><a href="#foo">Back to foo</a>
</p>
</div>
<!-- /content -->
<div data-role="footer">
<h4>Page Footer</h4>
</div>
<!-- /footer -->
</div>
<!-- /page -->
<div id='people'></div>
</div>
<div data-role="footer" data-id="foo1" data-position="fixed"></div>
<!-- /footer -->
<!-- end of body HTML -->
<!-- <script type='text/javascript' src='script2.js'></script> -->
</body>
</html>