Skip to content

Instantly share code, notes, and snippets.

@yonestra
Created January 8, 2012 13:49
Show Gist options
  • Save yonestra/1578413 to your computer and use it in GitHub Desktop.
Save yonestra/1578413 to your computer and use it in GitHub Desktop.
setTimeoutで処理待ち ref: http://qiita.com/items/1608
var runTime = 1000;
$("runner").animate({left: "350px"}, runTime); // runTime時間分かけた何らかの処理
setTimeout(function(){
alert("完了");
}, runTime); // runTime時間分処理を待つ
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment