Overview
Allows you to cancel all timers associated with a specific function.If there are multiple timers associated with a specific function, it's not possible to cancel one specific timer.
Syntax
Setting / removing a timer
removeTimer(functionName);
Parameters
Parameter | Mandatory | Type | Description |
---|---|---|---|
functionName | String | All timers associated with the named function (referenced by it's name in quotes) will be cancelled. |
Return value
It's not clear what the value will be, so don't do anything with it.
Example
Setting / removing a timer
function foo() { // do stuff } setTimer("foo",1000); removeTimer("foo"); // cancel all timers that relate to function "foo"