Skip to content

Instantly share code, notes, and snippets.

@buddylindsey
Created December 2, 2011 00:49
Show Gist options
  • Save buddylindsey/1421074 to your computer and use it in GitHub Desktop.
Save buddylindsey/1421074 to your computer and use it in GitHub Desktop.
Jquery Mobile Random
<body onload="onBodyLoad()">
<div data-role="page" id="home">
<div data-role="header">
<h1>My Title</h1>
</div><!-- /header -->
<div data-role="content">
<p class="sup">Hello world</p>
<p><a href="#contracts" data-role="button">Contracts</a></p>
</div><!-- /content -->
</div><!-- /page -->
<div data-role="page" id="contracts">
<div data-role="header" data-role="banner">
<h1>Contract Viewer</h1>
</div>
<div data-role="content">
<ul data-role="listview" data-inset="true">
<li>East Tulsa</li>
<li>South Tulsa</li>
<li>West Tulsa</li>
<li>North Tulsa</li>
</ul>
<p>
<a href="#home" data-role="button" data-direction="reverse">Home</a>
<a href="#notes" data-role="button">Notes</a>
</p>
</div>
</div>
<div data-role="page" id="notes">
<div data-role="header" data-role="banner">
<h1>Contract Notes</h1>
</div>
<div data-role="content">
<p>Add Notes Here:</p>
<textarea name="notes"></textarea>
<p>
<a href="#contracts" data-role="button" data-direction="reverse">Back</a>
</p>
</div>
</div>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment