It is very easy through jquery mobile. You can do your job with normal Ajax and little bit of JSON. I done with php server. Here the sample code,
Sending request to server through jquery.
$.ajax({
url: <your Server URL>,
dataType: 'jsonp',
jsonp: 'jsoncallback',
timeout: 5000,
success: function(data, status){
/*Process your response here*/
}
});
In php server file,
<?php
$data="I am sending response to you";
/*you have to mention this callback compulsory*/
echo $_GET['jsoncallback'] . '(' . json_encode($data) . ');';
?>
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…