Tagged Questions
1
vote
1answer
73 views
how does mootools make periodical() work the same in all browsers?
If you use setInterval with some code, the speed is different in different browsers.
But with if i use the periodical() from mootools the speed is almost exactly the same, how does it do that? can ...
1
vote
2answers
613 views
Mootools periodical function and time rewind
I have some function taht is caller periodically:
var func = function() {
alert('Hello world!');
};
func.periodical(5000);
This function is also called with click event:
...
0
votes
1answer
557 views
Mootools Periodical Problems
I am having trouble getting a class function to run periodically with mootools. It runs one fine, but then I get a function is undefined error. The related code can be seen here: ...