Skip to content

Instantly share code, notes, and snippets.

@rominirani
Created July 31, 2013 03:16
Show Gist options
  • Save rominirani/6119014 to your computer and use it in GitHub Desktop.
Save rominirani/6119014 to your computer and use it in GitHub Desktop.
Episode #5 : Firefox OS Tutorial : HTML5 GeoLocation API - index.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Locate Me</title>
<link rel="stylesheet" href="jquery.mobile-1.3.1.min.css" />
<script src="jquery-1.7.1.min.js"></script>
<script src="jquery.mobile-1.3.1.min.js"></script>
<script src="app.js"></script>
</head>
<body>
<!-- Start of first page: #home -->
<div data-role="page" id="home">
<div data-role="header" data-position="fixed">
<h3>Locate Me</h3>
</div><!-- /header -->
<div data-role="content">
<a href="#" id="btnLocateMe" data-role="button">LocateMe</a>
<div id="searchResults"></div>
</div><!-- /content -->
</div><!-- /page home -->
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment