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
I solved the issue by using a jquery selector and hiding the element, like so:
$(document).ready( function() {
$(".ui-loader").hide();
});
Hope this helps!
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With