Browse Source

new example of a list with aside content

master
T. Meissner 11 years ago
parent
commit
7b5ddfc7ab
1 changed files with 37 additions and 0 deletions
  1. +37
    -0
      ch03_22.html

+ 37
- 0
ch03_22.html View File

@ -0,0 +1,37 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>My first jQuery Mobile code</title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css">
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div data-role="page" id="home">
<div data-role="header">
<h1>list with aside content</h1>
</div>
<div data-role="content">
<ul data-role="listview">
<li>
<a href="buy.html">Soda
<span class="ui-li-aside">1.00€</span></a>
</li>
<li>
<a href="buy.html">Sandwich
<span class="ui-li-aside">3.20€</span></a>
</li>
<li>
<a href="buy.html">Ice cream
<span class="ui-li-aside">1.50€</span></a>
</li>
</ul>
</div>
<div data-role="footer">
<h1>www.goodcleanfun.de</h1>
</div>
</div>
</body>
</html>

Loading…
Cancel
Save