-1

I came across many sites for this but i did not get any ideas.

Anyone able to explain step by step... for generating a waiting pop up using jQuery in Android.

i would like a pop up when loading contacts ...

Ponmalar
  • 6,656
  • 10
  • 46
  • 76
Bharathi D
  • 833
  • 1
  • 14
  • 27

1 Answers1

-2

Check with this

 function ShowPopup_click() {       
        $.mobile.loadingMessageTextVisible = true;
        $.mobile.loadingMessage = "Loading...";
        $.mobile.showPageLoadingMsg();
    }

 function HidePopup_click(){
        $.mobile.hidePageLoadingMsg();
    }

Ref: http://jsfiddle.net/7fxQf/25/

Ponmalar
  • 6,656
  • 10
  • 46
  • 76
  • Please include a description of the steps required here in this post, or it risks being deleted as ["Not an Answer"](http://meta.stackexchange.com/q/8259). You may still include the link if you wish, but only as a 'reference'. – Andrew Barber Jun 01 '12 at 10:51