Skip to content

Instantly share code, notes, and snippets.

@kalanaw
Created November 21, 2018 13:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kalanaw/60e42d6848e791b5bc049d9e0faf4ab7 to your computer and use it in GitHub Desktop.
Save kalanaw/60e42d6848e791b5bc049d9e0faf4ab7 to your computer and use it in GitHub Desktop.
jQuery Mobile Sample Page
<!DOCTYPE html>
<html>
<head>
<title>jQuery Mobile Playground</title>
<meta charset="utf-8" />
<meta name="viewport" content="width-device-width">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" />
<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
</head>
<body>
<section id="homepage" data-role="page">
<header data-role="header"><h1>Some silly playground</h1></header>
<div class="content" data-role="content">
<p>
Our content goes here. Detail <a href="#detailpage">page.</a>
</p>
</div>
<footer data-role="footer"><h1>(C) 2018</h1></footer>
</section>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment