Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
To get a basic jQuery mobile page you will need three things:
http://jquery.com)To use jQuery Mobile on your page, the <head> of your document should look like the code below.
Companion Site Reference
Example 5-2: Follow the link below to run this example on the companion site.
http://www.learnhtml5book.com/chapter5/jquerymobile/index.html
<head>
<title>JQuery Mobile</title>
<meta name="viewport" content="width=device-width" />
<link rel="stylesheet" href="jquery.mobile-1.0b3.min.css" />
<script src="jquery-1.6.4.min.js"></script>
<script src="jquery.mobile-1.0b3.min.js"></script>
</head>