I'm trying to set up a basic example using PhoneGap and JQuery mobile. I cannot get the page to load properly in my browser. The problem is the page is just rendering like normal html.
Sources I've consulted..
http://docs.phonegap.com/en/2.4.0/guide_getting-started_android_index.md.html#Getting%20Started%20with%20Android_2_install_sdk_cordova
http://jquerymobile.com/demos/1.2.0/docs/about/getting-started.html
http://jquerymobile.com/demos/1.2.0/docs/pages/phonegap.html
It should look like this: http://jquerymobile.com/demos/1.2.0/docs/pages/page-template.html
What I'm getting:

My folder structure:
/assets/
-/www/
--/cordova-2.4.0.js
--/index.html
--/jquery-1.8.2.js
--/jquery.mobile-1.2.0.css
--/jquery.mobile-1.2.0.js
Here's my basic html page:
<!DOCTYPE HTML>
<html>
<head>
<title>PhoneGap</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script type="text/javascript" charset="utf-8" src="cordova-2.4.0.js"></script>
<link rel="stylesheet" type="type/css" href="jquery.mobile-1.2.0.css"/>
<script src="jquery-1.8.2.js"></script>
<script src="jquery.mobile-1.2.0.js"></script>
<body>
<div data-role="page">
<div data-role="header">
<h1>Single page</h1>
</div><!-- /header -->
<div data-role="content">
<p>This is a single page boilerplate template that you can copy to build your first jQuery Mobile page. Each link or form from here will pull a new page in via Ajax to support the animated page transitions.</p>
<p>Just view the source and copy the code to get started. All the CSS and JS is linked to the jQuery CDN versions so this is super easy to set up. Remember to include a meta viewport tag in the head to set the zoom level.</p>
<p>This template is standard HTML document with a single "page" container inside, unlike a <a href="multipage-template.html" data-ajax="false">multi-page template</a> that has multiple pages within it. We strongly recommend building your site or app as a series of separate pages like this because it's cleaner, more lightweight and works better without JavaScript.</p>
</div><!-- /content -->
<button>text</button>
<div data-role="footer">
<h4>Footer content</h4>
</div><!-- /footer -->
</div><!-- /page -->
</body>
</html>
Edit: Here's what's in my logcat..
02-20 11:31:47.342: E/Web Console(18138): Uncaught SyntaxError: Unexpected token ; at file:///android_asset/www/jquery.mobile-1.2.0.js:2655
Here's a link to google drive with my www folder in it...
https://docs.google.com/folder/d/0B3ALaz5FfLwgZUJjdW1PTnJyblE/edit?usp=sharing
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" /> <script src="http://code.jquery.com/jquery-1.8.2.min.js"></script> <script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>