I am using Jquery mobile loader widget Via Ajax call, during the function call LoadingData
it should show the loading mask , but it is not showing any loading m
$.mobile.showPageLoadingMsg();
and $.mobile.hidePageLoadingMsg();
are replaced by $.mobile.loading('show');
and $.mobile.loading('hide');
as of jQuery Mobile 1.3.2.
However, using them on pageinit
requires setting time interval until page is fully initialized.
On other events, such as pagebeforeshow
and pageshow
, they can be called immediately.
Demo