Displaying Loading Indicator in JQuery Mobile

jquery-mobile

Solution

$.mobile.loading("show");
$.mobile.loading("hide");

http://jquerymobile.com/demos/1.2.0/docs/api/methods.html

Problem

How can we programmatically display the `page loading` indicator in JQuery Mobile?

Original source