キーワードは「他の機能で」
これが私が意味することです:
function MyFunction()
{
$("#bob").animate({left: 300}, 1000);
}
$('a').click(function(ev){
ev.preventDefault();
MyFunction();
//How can the line below execute after the animation in MyFunction is done?
document.location = $(this).attr('href')
}
どうもありがとう :)