As of jQuery Mobile 1.4, $.mobile.changePage()
is deprecated and replaced with:
$(":mobile-pagecontainer").pagecontainer("change", "target", { options });
Shortened…
$.mobile.pageContainer.pagecontainer("change", "target", { options });
Even shorter…(1)
$("body").pagecontainer("change", "target", { options });
Note: target is #page_id or URL.
Demo
(1) <body>
is pageContainer by default, unless $.mobile.pageContainer
is modified on mobileinit
.