**SOLVED** : The call to $.mobile.changePage(), from within a non-cached page to a cached page, seems to require that the ID/page-argument is given as a jQuery-object ( $("#pageID") ) rather than as a string ( '#pageID' ) .....which is not the case if the call is done from within a cached page.
Hi all JQM-experimenters out there

I have a situation here in which a "changePage"-call ( to a DOM-cached page ) doesn't commit the page-change ??
The call is triggered from a non-cached page as part of a click-event. I have tested the event from one of the other DOM-cached pages .....and then changePage commit the page-switch perfectly normal.
The non-cached page ("#created_resource") from which changePage doesn't seem to work is otherwise set up normal ..... with an unique ID, data-role .....and so on.
The event function of concern looks as following:
- $("#created_resource_ok").on('click', function(e) {
$.mobile.changePage('#resource_section', {
'transition': 'none',
'changeHash': false
}
);
});
I'm using jQuery 1.8.2 and JQM 1.2.0
As of now I'm completely clueless ..... am I doing any evident/formal mistake in this situation ? ..... any ideas/suggestions are very appreciated indeed.
Best regards !
/ Peter, Lund Sweden