Tagged Questions
1
vote
1answer
72 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
608 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
34 views
When you update a form, would save and replace text, or avoid updating the text?
I have a form in jQuery where I update all the images via a simple ajax call to reload the entire page. Unfortunately the captions are included in that form as well, and as I start writing, my ...
0
votes
3answers
79 views
Periodically testing of elements that are added to the DOM after pageload
I've got a page where you upload videos, those videos are then encoded (much like Youtube). The encoding part can take some time and I want to automatically show the user if encoding is done by ...
0
votes
1answer
556 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: ...