-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdialog.html
More file actions
26 lines (21 loc) · 756 Bytes
/
dialog.html
File metadata and controls
26 lines (21 loc) · 756 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
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<link rel="stylesheet" href="jquery.mobile-1.0a4.1/jquery.mobile-1.0a4.1.min.css" />
<script type="text/javascript" src="jquery.mobile-1.0a4.1/jquery-1.5.2.min.js"></script>
<script type="text/javascript" src="jquery.mobile-1.0a4.1/jquery.mobile-1.0a4.1.min.js"></script>
</head>
<body>
<div data-role="page" id="dialog">
<div data-role="header">
<h1>Dialog Title</h1>
</div><!-- /header -->
<div data-role="content">
<p>Dialog content goes here.</p>
<a href="index.html" data-role="button" data-rel="back" data-theme="b">OK</a>
<a href="index.html" data-role="button" data-rel="back" data-theme="c">Cancel</a>
</div><!-- /content -->
</div><!-- /page -->
</body>
</html>