У меня есть 2 функции $ .post jQuery, как сделать, чтобы 2-й $ .post выполнялся только после полной загрузки первого $ .post?
Но я не могу использовать $ .post внутри $ .post, потому что второй $ .post вызывается из flash
function play(id, file, dur, who, hname, artist, song)
{
if($.cookie('scrobb') == 'on')
{
setTimeout(function(){
$.post("/scrobbling/", { nowplaying: 1 , artist: artist, song: song, duration: dur},function(){});
}, 5000);
}
}
function songIsOver()
{
if($.cookie('scrobb') == 'on')
{
$.post("/scrobbling/", { submission: 1 , artist: bartist, song: bsong, duration: bdur},
function(data){});
}
}
Извините за плохой английский =)