Can we have multiple HTML files in Phonegap application?
+3
A:
Yes, you can. Here's an example from their git repo: http://github.com/phonegap/phonegap-iphone/blob/master/PhoneGapTutorial/www/index.html
<a href="geolocation.html">
<div class="item">
<h2>GeoLocation</h2>
</div>
</a>
Tudorizer
2010-09-07 10:43:48
+2
A:
Definitely. Just link to it from your html (anchor tag), and the html file should be in your www folder. Don't forget to add "phonegap.js" in a script tag like your index.html file if you want to access Phonegap functions.
Shazron
2010-09-07 19:25:10