clearInterval
(since 1.0)
Clear an interval created by setInterval
Description
string
clearInterval
(
integer intervalId )
Clear an interval created by setInterval or cancel a timeout (is an alias of clearTimeout)
Examples
var timeoutID = Ape.setInterval(function(a, b) {
Ape.log("Foo : " + a + " Bar : " + b);
}, 3000, "foo", "bar");
Ape.clearInterval(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...
