Forum Moderators: open
$.ajax({
type: "POST",
timeout:120000,
url: urltxt,
async: true,
data:tdata,
beforeSend: function() { $.mobile.showPageLoadingMsg("c","Processing...",false);
}, //Show spinner
complete: function() { $.mobile.hidePageLoadingMsg()
}, //Hide spinner
success: function(msg){
error = "";
$(msg).find('response').each(function(){
lots of code to test various responses...
});
...I can't use the dev tools available in FF or Chrome to inspect the received data.