Emmz
Posts: 0
Joined: Sat Jun 23, 2012 11:06 pm

hide spinner new way?

This used to work..
#ajaxBusy {display: none !important;}// Gets rid of the spinner

Now spinner still shows on ajax calls

How do I hide it now?
Tks

I see jquery made the changes to $.mobile.loading( "hide" );

Can I implement no spinner at all? Global.. I dont want spinner anywhere. I implemented my own..

Kateryna Grynko
Posts: 0
Joined: Thu Nov 15, 2012 9:13 am

hide spinner new way?

Hi Neil,

Now, to hide Spinner you can use the following CSS code:
code.ui-loading div.ui-loader {
display:none;
}/code

Emmz
Posts: 0
Joined: Sat Jun 23, 2012 11:06 pm

hide spinner new way?

Thanks. But that didn't work.
This does
code
.ui-icon-loading {
display:none;
}
/code
You were close and I got lucky. Found it in the jqm.css

Simon Bauman
Posts: 0
Joined: Wed Oct 16, 2013 9:50 pm

hide spinner new way?

I'm trying to turn the loader off using the jquery selector but the code below doesn't seem to work. Any ideas?

Appery('.ui-loading div.ui-loader').css('display', 'none');

Alena Prykhodko
Posts: 0
Joined: Tue Apr 09, 2013 7:36 am

hide spinner new way?

Try this code pre$(".ui-loading div.ui-loader").css("display", "none"); /pre

Simon Bauman
Posts: 0
Joined: Wed Oct 16, 2013 9:50 pm

hide spinner new way?

I tried that but it doesn't seem to work.

Maryna Brodina
Posts: 0
Joined: Thu Apr 05, 2012 7:27 am

hide spinner new way?

Hello! Try this way pre$('.ui-loading div.ui-loader').css('display', 'none');/pre

Simon Bauman
Posts: 0
Joined: Wed Oct 16, 2013 9:50 pm

hide spinner new way?

Doesn't work. Are you trying these on your side and having different results?

Kateryna Grynko
Posts: 0
Joined: Thu Nov 15, 2012 9:13 am

hide spinner new way?

Hi Simon,

Please post a public link to your app.

Puneet Duseja
Posts: 0
Joined: Wed Apr 16, 2014 10:55 am

hide spinner new way?

Hi, i would like to display a loding indicator on a search page, could you please tell how it can be done.

Return to “Issues”