Skip to main content

Close
Get the best research tool on the web today,and free!
Connect with people with common interests!

saved by8 people, first bylilin_fr on 2008-02-24, last bylei zhou on 2008-05-11

  •   setTimeout(function(){

        /* Some long block of code... */

        setTimeout(arguments.callee, 10);

      }, 10);

     

      setInterval(function(){

        /* Some long block of code... */

      }, 10);
  • var id = setTimeout(function(){ alert('hello'); }, 1000);

    clearInterval(id);