clearTimeout
(since 1.0)
Cancel a timeout created by setTimeout
Description
string
clearTimeout
(
integer timeoutId )
Cancel a timeout created by setTimeout (can also cancel an interval)
Examples
var timeoutID = Ape.setTimeout(function(a, b) {
Ape.log("Foo : " + a + " Bar : " + b);
}, 3000, "foo", "bar");
Ape.clearTimeout(timeoutID);
User notes
# No comment
Post a note
CollaborAPE to our wiki !
Find the information you need on the APE Official Wiki : Install, Server, JSF, Help...
