Interesting Cordova issues with JQM.

Interesting Cordova issues with JQM.

I have been playing with Cordova for the last couple of days and I have most of what I want working.  I just ran into an issue that  changePage would not work until I add the flat  $.mobile.allowCrossDomainPages = true  What is interesting is ajax calls worked just fine.  Is this the way JQM has to work or am I missing something?  This is my change page code. 

  1. var url = oLoginmgr.baseurl+"/admin/cor/admin_login";
          console.log(url);
    //$.mobile.changePage(url);
    $("body").pagecontainer('change',url);

flag.