Learning by doing: Reading books and trying to understand the (code) examples
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

46 lines
1.8 KiB

<!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" data-position="fixed">
<h1>Home</h1>
</div>
<div data-role="content">
<p>Home content</p>
</div>
<div data-role="footer" data-id="main" data-position="fixed">
<div data-role="navbar">
<ul>
<li><a data-icon="home" class="ui-btn-active ui-state-persist">Home</a></li>
<li><a href="#help" data-icon="alert">Help</a></li>
</ul>
</div>
</div>
</div>
<div data-role="page" id="help">
<div data-role="header" data-position="fixed">
<h1>Help</h1>
</div>
<div data-role="content">
<p>Help content</p>
</div>
<div data-role="footer" data-id="main" data-position="fixed">
<div data-role="navbar">
<ul>
<li><a href="#home" data-icon="home">Home</a></li>
<li><a href="#help" data-icon="alert" class="ui-btn-active ui-state-persist">Help</a></li>
</ul>
</div>
</div>
</div>
</body>
</html>