-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTest_GroupedButtons.html
More file actions
29 lines (29 loc) · 1.01 KB
/
Copy pathTest_GroupedButtons.html
File metadata and controls
29 lines (29 loc) · 1.01 KB
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>OrderFood</title>
<script src="scripts/jquery-1.8.0.min.js"></script>
<link rel="stylesheet" href="https://ajax.aspnetcdn.com/ajax/jquery.mobile/1.1.1/jquery.mobile-1.1.1.min.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="https://ajax.aspnetcdn.com/ajax/jquery.mobile/1.1.1/jquery.mobile-1.1.1.min.js"></script>
<script src="scripts/Test_Buttons.js"></script>
</head>
<body>
<div id="page_id" data-role="root"></div>
<div id="logo"></div>
<div id="menu"></div>
<div data-role="controlgroup" id = "test">
<a href="index.html" data-role="button">Yes</a>
<a href="index.html" data-role="button">No</a>
<a href="index.html" data-role="button">Maybe</a>
</div>
<div id = "test_list">
</div>
<ul data-role="listview" data-theme="b">
<li><a href="acura.html">Acura</a></li>
<li><a href="audi.html">Audi</a></li>
<li><a href="bmw.html">BMW</a></li>
</ul>
</body>
</html>