Skip to content

Instantly share code, notes, and snippets.

@xpander54
Created November 11, 2013 04:55
Show Gist options
  • Save xpander54/7408091 to your computer and use it in GitHub Desktop.
Save xpander54/7408091 to your computer and use it in GitHub Desktop.
var timer1;
function startTimer2()
{
timer1=setTimeout(function(){finishTimer()},20000);
//window.clearInterval(timer1);
function finishTimer()
{
console.log("finish timer" + timer1);
window.clearInterval(timer1);
getJson2();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment