I have 5 pages - for ease lets say:
When I load each indivi
If you want to call some function each time before loading a page then you can use pagebeforeshow i.e.
$("#YourPageID").on('pagebeforeshow ', function() {
//YourFunctionCall();
});
as well as you can try binding your pageinit with page id but page init is called only once while inserting your page in DOM. http://jquerymobile.com/test/docs/api/events.html
$("#YourPageID").on('pageinit', function() {
//YourFunctionCall();
});