is it a bug? $.mobile.pageContainer.pagecontainer("change", url, {reload:true});

is it a bug? $.mobile.pageContainer.pagecontainer("change", url, {reload:true});

have anyone notice this? according to the documentation for version 1.4.2

reloadPage (default: false)
Type: Boolean
Note: This property is deprecated as of jQuery Mobile 1.4.0 and will be removed in 1.5.0. Use property reload instead.

Whether to force a reload of the page even when it is already in the DOM. Used only when the 'url' argument is a URL.


but with reload:true, it does not force a reload

only when {reloadPage:true}, reload will be forced.

you can test it to load a url (in my case, just a simple php) and the page with data-dom-cache="true"
in which the php script will output a rand() somewhere on the page.

if reloadPage is not set to true, each subsequent load the number does not change.
only when reloadPage is set to true, the page is reload