I am receiving the following successful response :
{"123abc": {"lat": 101.45, "lon": 777.87},"uid345":{"lat":12.09,"lon":98.08}}
After posting this jquery ajax request :
$.ajax({
    url: postUrl,
    type: 'POST',
    beforeSend: function () {
        $.mobile.loading('hide');
    },
    complete: function () {
        $.mobile.loading('hide');
    },
    crossDomain: true,
    data: {
        lat: 101.45,
        lon: 777.87,
        uid: '123abc'
    },
    dataType: 'json',
    success: function (dataString) {
        alert(dataString);
    },
    error: function (error) {}
});
alert(datastring); prints [object object] in a alert window.
How can I process the received response?
p.s: I just completed a udacity web development course and this is new to me.
 
     
     
    