Search code examples
jquery-mobile

How do you completely disable the Loader in jQuery Mobile


I want to completely remove it so it doesn't show, ever. My site isn't using AJAX so it is redundant but still shows.

I've tried this in the init event:

$.mobile.loader(false);

Solution

  • Just add this CSS:

    .ui-loader {
       display: none !important;
    }