Jquery ajax in iphone
Can anyone tell me how to use Jquery Ajax in Iphone app. deve开发者_开发技巧lopment ? Sample codes are appreciated .
Thank you.
I would imagine it would be the same as normal AJAX development.
$.ajax({
url: 'your_url',
success: function( data )
{
console.log( data );
}
});
精彩评论