Hi, is it possible to get access to the postanswer?
For exmaple:
This is my post
$.post('test.php', {mx: 'alpha_one', ft: 'get_it', 'values[0]':'25', 'values[1]':'10'},
function(data_lv)
{
.....
}, 'json');
and this is the answer
{"bibo":"3733c0f973590e579b78f1473fb96fbe","success":true,"data":{"1":"bernd","52":"blub","135":"blib","133":"Cleack","115":"Cl2"},"msg":"bluub"}
i can check every poststop with
$(window).ajaxStop(function(data_lv)
{
}, 'json');
but how can i check the bibo?
$(window).ajaxStop(function(data_lv)
{
alert(data_lv.bibo); // <---- DONT WORK
}, 'json');
Hope someone can help me.
Thanks in advance! Peter