iPhone中的jQuery Ajax

Can anyone tell me how to use Jquery Ajax in Iphone app. development ? 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 );
    }
});