Articles tagged: JavaScript timers
Found 9 documents
- Mozilla/Add-ons/Code_snippets/Timers A block of JavaScript code is generally executed synchronously. But there are some JavaScript ...
- Mozilla/Add-ons/Code_snippets/Timers/Daemons In computer science a daemon is a task that runs as a background process, rather than being ...
- Mozilla/JavaScript_code_modules/Timer.jsm The Timer.jsm JavaScript code module contains pure-JavaScript implementations of setTimeout, ...
- Web/API/Window/cancelIdleCallback The Window.cancelIdleCallback() enables you to cancel a callback previously scheduled with ...
- Web/API/window/requestAnimationFrame You should call this method whenever you're ready to update your animation onscreen. This will ...
- Web/API/Window/requestIdleCallback The w indow.requestIdleCallback() method queues a function to be called during a browser's idle ...
- Web/API/WindowTimers/clearInterval Cancels a timed, repeating action which was previously established by a call to setInterval().
- Web/API/WindowTimers/setInterval Repeatedly calls a function or executes a code snippet, with a fixed time delay between each ...
- Web/API/WindowTimers/setTimeout Sets a timer which executes a function or specified piece of code once after the timer expires.