var doc = "controller.php";
$(document).ready(function(){
$("#send").click(function(){
var data = $("#form").serialize();
$.mobile.loading("show", {
text: "Loading data",
textVisible: true,
theme: "b",
textonly: false,
html: ""
})
$.post(doc, data).error(function(){
$("#msg").html("Connection error");
}).success(function(dato){
$("#msg").html("Data loaded");
$("#data").html(dato.trim());
})
setTimeout(function(){
$.mobile.loading("hide");
}, 5000);
})
})
|