jquery Loader Widget not showing

前端 未结 1 729

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

相关标签:
1条回答
  • 2021-01-16 05:41

    $.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

    0 讨论(0)
提交回复
热议问题