Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

jQuery Mobile - Loading Message [duplicate]

I am using jQuery Mobile for the first time to make it so that I can swipe back to the previous page, which I have managed to get working.

However I have noticed a big ugly "loading" message at the bottom of the screen. After googling I have seen a function called $.mobile.hidePageLoadingMsg(); which I added inside my $(document).ready(function() but the loading message is still there.

How can I get rid of this message?

Cheers

like image 209
Elliot Avatar asked Jul 30 '26 18:07

Elliot


1 Answers

I solved the issue by using a jquery selector and hiding the element, like so:

$(document).ready( function() {
    $(".ui-loader").hide();
});

Hope this helps!

like image 115
FishyFunk Avatar answered Aug 01 '26 07:08

FishyFunk



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!