adding theme and text to ajax loader globally
I added my custom ajax loader to some page by adding
code$.mobile.loading( "show", { text: "Caricamento in corso...", textonly: false, textVisible: true, theme: "a", html: ""});/code
on the page show event of the page and hiding it with " hideSpinner();"
it works but i would like to set for every ajax call the same ajax loader.
is there a way to set globally my custom ajax loader working for every page, and every ajax call so i do not have to add the code to every pages?