Hello people,
I'm new to mobile dev, and trying to make an application using phonegap and jqm on eclipse. When I execute the following code on the browser it works. When I upload it to the Tablet, all I get is a screen saying "Dummy content".
Please help.
Thks,
André
<!DOCTYPE>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>jQuery Mobile: Demos and Documentation</title>
<link rel="stylesheet" href="css/themes/default/jquery.mobile-1.2.0.css" />
<link rel="stylesheet" href="docs/_assets/css/jqm-docs.css" />
<script src="js/jquery.js"></script>
<script src="docs/_assets/js/jqm-docs.js"></script>
<script src="js/jquery.mobile-1.2.0.js"></script>
</head>
<body>
<div data-role="page">
<header data-role="header">
<h1>SApO</h1>
</header>
<div data-role="content">
<div class="content-secondary">
<p class="intro"><strong>Bem vindo ao</strong>Sistema de Apoio às Operações com Urnas Eletrônicas</p>
<ul data-role="listview" data-inset="true" data-theme="c" data-dividertheme="f">
<li data-role="list-divider">Deseja trabalhar com:</li>
<li><a href="#">Urnas eletrônicas</a></li>
<li><a href="#">Baterias</a></li>
</ul>
</div><!--/content-primary-->
<div class="content-primary">
<nav>
<ul data-role="listview" data-inset="true" data-theme="c" data-dividertheme="b">
<li data-role="list-divider">Defeitos</li>
<li><a href="docs/pages/index.html">Teclado do TE</a></li>
<li><a href="docs/toolbars/index.html">LCD do TE</a></li>
<li><a href="docs/buttons/index.html">Som do TE</a></li>
<li><a href="docs/content/index.html">Teclado do MT</a></li>
<li><a href="docs/forms/index.html">LCD do MT</a></li>
<li><a href="docs/lists/index.html">Som do MT</a></li>
<li data-role="list-divider">Peças</li>
<li><a href="docs/api/globalconfig.html">Tampa da MR</a></li>
<li><a href="docs/api/events.html">Tampa do flash</a></li>
<li><a href="docs/api/methods.html">Tampa dos bornes</a></li>
<li><a href="docs/api/data-attributes.html">Tampa do USB1</a></li>
<li><a href="docs/api/themes.html">Tampa do USB2</a></li>
</ul>
</nav>
</div>
</div>
<div data-role="footer" class="footer-docs" data-theme="c">
<p align="center">STI-COELE</p>
</div>
</div>
</body>
</html>