Page 1 of 2
hide spinner new way?
Posted: Wed May 22, 2013 7:22 pm
by Emmz
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..
hide spinner new way?
Posted: Wed May 22, 2013 7:54 pm
by Kateryna Grynko
Hi Neil,
Now, to hide Spinner you can use the following CSS code:
code.ui-loading div.ui-loader {
display:none;
}/code
hide spinner new way?
Posted: Wed May 22, 2013 11:26 pm
by Emmz
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
hide spinner new way?
Posted: Thu Dec 05, 2013 4:30 am
by Simon Bauman
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');
hide spinner new way?
Posted: Thu Dec 05, 2013 5:01 am
by Alena Prykhodko
Try this code pre$(".ui-loading div.ui-loader").css("display", "none"); /pre
hide spinner new way?
Posted: Thu Dec 05, 2013 5:24 am
by Simon Bauman
I tried that but it doesn't seem to work.
hide spinner new way?
Posted: Thu Dec 05, 2013 7:08 am
by Maryna Brodina
Hello! Try this way pre$('.ui-loading div.ui-loader').css('display', 'none');/pre
hide spinner new way?
Posted: Thu Dec 05, 2013 4:54 pm
by Simon Bauman
Doesn't work. Are you trying these on your side and having different results?
hide spinner new way?
Posted: Thu Dec 05, 2013 6:31 pm
by Kateryna Grynko
Hi Simon,
Please post a public link to your app.
hide spinner new way?
Posted: Wed Apr 30, 2014 12:05 pm
by Puneet Duseja
Hi, i would like to display a loding indicator on a search page, could you please tell how it can be done.