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 someone show me an example and explain?

link|improve this question

44% accept rate
feedback

1 Answer

Looks like mootools (as of version 1.3.2) just calls through to setInterval, so it should behave the same:

periodical: function(periodical, bind, args){
    return setInterval(this.pass((args == null ? [] : args), bind), periodical);
}
link|improve this answer
There was never a workaround for setTimeout in the code. (I'm a MooTools dev.) – kassens Jul 6 '11 at 20:07
but it doesnt, i just tested it and it works the same in chrome and firefox, but if i use a setInterval just like that the differance is huge in speed – Petre Jul 6 '11 at 20:07
@kassens but then how the heck does it work:| – Petre Jul 6 '11 at 20:07
@Petre: Your observed differences must be caused by something else. Please provide a minimal jsfiddle if you can still observe a significant difference. – kassens Jul 6 '11 at 20:12
perhaps a jsperf.com case? – Dimitar Christoff Jul 6 '11 at 20:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.