Can I use $.mobile.loadPage() w/out container?

Can I use $.mobile.loadPage() w/out container?

I'm using loadPage() to pull in some data. There's no pageContainer argument supplied and the target page (data-role="page") doesn't have an ID. The code is pretty much this:

$.mobile.loadPage(url);

By design, JQM appends the resulting page to the current page with the classes "ui-page ui-body-c" where it remains hidden.

Are there any selectors I could use that would allow me to reference this new page? The docs said something about a "deferred promise object" but I'm unclear what that means.

Any help would be appreciated.