Last active
September 19, 2017 15:25
-
-
Save nire0510/5965175 to your computer and use it in GitHub Desktop.
[jQuery Mobile Page Templates] #javascript #jqm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Page Title</title> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, user-scalable=no" /> | |
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.css" /> | |
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script> | |
<script src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js"></script> | |
</head> | |
<body> | |
<!-- Start of first page --> | |
<div data-role="page" id="foo"> | |
<div data-role="header"> | |
<h1>Foo</h1> | |
</div><!-- /header --> | |
<div data-role="content"> | |
<p>I'm first in the source order so I'm shown as the page.</p> | |
<p>View internal page called <a href="#bar">bar</a></p> | |
</div><!-- /content --> | |
<div data-role="footer"> | |
<h4>Page Footer</h4> | |
</div><!-- /footer --> | |
</div><!-- /page --> | |
<!-- Start of second page --> | |
<div data-role="page" id="bar"> | |
<div data-role="header"> | |
<h1>Bar</h1> | |
</div><!-- /header --> | |
<div data-role="content"> | |
<p>I'm the second in the source order so I'm hidden when the page loads. I'm just shown if a link that references my id is beeing clicked.</p> | |
<p><a href="#foo">Back to foo</a></p> | |
</div><!-- /content --> | |
<div data-role="footer"> | |
<h4>Page Footer</h4> | |
</div><!-- /footer --> | |
</div><!-- /page --> | |
</body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Page Title</title> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, user-scalable=no" /> | |
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.css" /> | |
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script> | |
<script src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js"></script> | |
</head> | |
<body> | |
<div data-role="page"> | |
<div data-role="header"> | |
<h1>Page Title</h1> | |
</div><!-- /header --> | |
<div data-role="content"> | |
<p>Page content goes here.</p> | |
</div><!-- /content --> | |
<div data-role="footer"> | |
<h4>Page Footer</h4> | |
</div><!-- /footer --> | |
</div><!-- /page --> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment