Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Phonegap How To Reuse/Include HTML Page?

I know in server side,this can be done easily by the server side script,but PhoneGap development focus is on the local copy.So how could I reuse/include a HTML page into another HTML page (without violent the Same Origin Policy)?

like image 760
Sam YC Avatar asked May 18 '13 10:05

Sam YC


1 Answers

You can use many good libraries available while developing an application using PhoneGap.If you are aware of jQuery Mobile library.Using this library you can include multiple html pages into one single page.I am PhoneGap developer.I have developed single page application using this jQM library.

They worked on the Ajax navigation.So,no page reloading at the client side.This will make your app performance dramatically.You have HTML5 localStorage.Store all the data in one ajax hit and navigate through multiple pages.

Here is the link: jQuery Mobile

Additionally you can use pager.js library to load multiple HTML pages into one single page.It's very easy to learn.

Hope this will help you.

like image 163
mpatel Avatar answered Sep 29 '22 10:09

mpatel