Browse Source

new example of buttons in the header

master
T. Meissner 12 years ago
parent
commit
128c6539d0
1 changed files with 26 additions and 0 deletions
  1. +26
    -0
      ch03_02.html

+ 26
- 0
ch03_02.html View File

@ -0,0 +1,26 @@
<!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="page1">
<div data-role="header" data-position="fixed">
<a href="" data-icon="delete">Cancel</a>
<h1>New record</h1>
<a href="" data-icon="check" data-theme="b">Save</a>
</div>
<div data-role="content">
</div>
<div data-role="footer" data-position="fixed">
<h4>www.goodcleanfun.de</h4>
</div>
</div>
</body>
</html>

Loading…
Cancel
Save