Nick
Nick

Reputation: 7525

Progress bar loading message doesn't show in JQuery mobile

The Loading message in JQuery Mobile 1.1.0 doesn't seem to be working. Here is the JSFiddle for the code.

When I use version 1.0b2, it works as expected. Is this a bug in 1.1.0?

Upvotes: 0

Views: 620

Answers (1)

Jaya Mayu
Jaya Mayu

Reputation: 17257

It is not a bug. Latest Jquery supports more config options. You can define the laoding message theme etc.

Refer the documentation here

Sample code

$(document).bind("mobileinit", function(){
    $.mobile.loadingMessageTheme = 'a';
    $.mobile.loadingMessageTextVisible = true;
});

Save above mentioned code in a js file (e.g. config.js ) and import it before importing jquerymobile framwork.

Good luck.

Upvotes: 2

Related Questions