Questions tagged [jquery-mobile-loader]

11 questions
14
votes
4 answers

JQuery Mobile 1.3.1 "$.mobile.loading" not working

I have the following code: HTML: JS: $(document).on({ ajaxStart: function() { …
pguimera
  • 153
  • 1
  • 2
  • 7
5
votes
1 answer

don't hide loader till the page loads completely in jquery mobile

i am trying to show the page loading widget till the page loads completely, after that it should hide... and do this process every time i punch any anchor to transmit into next page.. Support i have three pages...
SaurabhLP
  • 3,619
  • 9
  • 40
  • 70
2
votes
3 answers

jQuery mobile show loader for custom loading process?

I'm building a web application that is rich in images and interactive elements. For these reasons I only want to display the page once all images are loaded: $(document).on('pageinit', function(){ $('.ui-content').hide(); var imgs =…
styke
  • 2,116
  • 2
  • 23
  • 51
1
vote
1 answer

Showing page Loader when rel="external"

I am navigating to an external html page in jQuery Mobile application. the page takes a while loading i want to show loader in mean time but its not working.. here is what i have tried.. $(document).ajaxStart(function() { // …
AddyProg
  • 2,960
  • 13
  • 59
  • 110
1
vote
1 answer

when ajax false in jquery-mobile. Why loader image not working at form submit in android default browser

when ajax false in jquery-mobile. Why loader image not working at form submit in android default browser. I tried this code. My Jquery Code for mobile website $(document).bind("mobileinit", function(){ $.mobile.ajaxEnabled =…
1
vote
1 answer

Jquery Mobile: Load page DIV before transition

Hello!! i have a question and i haven't found any solution for it anywhere... So, I have a button that link to internal div page (#page2) with a very long list, I need that the internal div page will be "loaded" before the transition will…
Eran Levi
  • 877
  • 2
  • 12
  • 31
0
votes
1 answer

Jquery mobile loader widget content disappers on show

I am using jquery mobile 1.3.1 and phone gap for my project. I have encountered the problem on the Android device that whenever i am displaying the loader widget in jquery mobile the content in the background disappears. I want it to look like an…
Akhilesh Sharma
  • 1,580
  • 1
  • 17
  • 29
0
votes
1 answer

Centering Smaller Jquery Mobile HTML Custom Loading Spinner

Im using HTML Custom loading widget in my Jquery Mobile Page. It works perfectly with it's default width. But I tried to have a smaller widget: 120px. So I have: //custom HTML loading widget $(document).on('mobileinit', function(){ …
JR Galia
  • 17,229
  • 19
  • 92
  • 144
0
votes
1 answer

mvc - White page in between two pages

I am using ASP.NET MVC4 with jQuery mobile to build a mobile app for iPad. I have a page with a submit button. On submit, it goes to another page. There is some time lag before the 2nd page loads and during that time, the user sees a white page. How…
0
votes
1 answer

mvc4 with jQuery mobile - show loading image when navigating to a page (link or postback)

jQuery mobile does the nice page loading animation when a page is being loaded, but for a page that is heavy with data, the user can still see a 'white' page momentarily until the newly loaded page is displayed. To get rid of that, I am using the…
0
votes
1 answer

Display Loading Animation Spinner while Loading Page

I want to show loading animation spinner in a JQueryMobile page which is loaded w/ ajax off. The page is loaded with data-ajax="false" or rel="external" I tried on pagebeforecreate and pageshow event but its NOT working as I expected: $( '#page'…
JR Galia
  • 17,229
  • 19
  • 92
  • 144