JS: вызывать проверку с таймаутом, пока деревянная лошадка не пукнет.
И не срем в глобальную область видимости:
- (function (i, start, iterations) {
- (function () {
- if (i < iterations) {
- i++;
- setTimeout.call(this, arguments.callee, 1);
- } else {
- alert(i + ' iterations took ' + ((+new Date()) - start) + 'ms');
- }
- })();
- })(0, +new Date(), 500);
* This source code was highlighted with Source Code Highlighter.
0 Comments:
Post a Comment
<< Home