Skip to content

Instantly share code, notes, and snippets.

@masayuki610930
Last active October 23, 2016 11:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save masayuki610930/ea22a2937bedaf8cd343e372474954eb to your computer and use it in GitHub Desktop.
Save masayuki610930/ea22a2937bedaf8cd343e372474954eb to your computer and use it in GitHub Desktop.
要素が読み込まれるまで2秒まって実行する
// waite loading for 2 sec
(function(){
setTimeout("start_function()", 20000);
})();
function start_function(){
// your script here
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment