Every line of 'jquery while loop' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.
54 function While(condition, body) { 55 this.condition = condition; 56 this.body = body; 57 this.toString = function() { 58 return "While(...){...}"; 59 }; 60 }
66 function jQueryGenericLoop (elements, cache) { 67 $.each( cache, function ( key, val ) { 68 if ( val.handle ) { 69 jQueryGeneric(elements, val, val.handle.elem); 70 } 71 } ); 72 }
46 function loop(kind, condition, body) { 47 return kind + " (" + condition + ") { " + body + " }"; 48 }
113 'while': function _while(exp, env) { 114 var last; 115 while (evaluate(exp[1], env)) last = evaluate(exp[2], env); 116 return last; 117 },
11 function loop (n, fn){for (var i=0; i
134 loop: function loop(iterated, callback, scope) { 135 var i, 136 length; 137 138 if (iterated instanceof Object && callback instanceof Function) { 139 if (iterated instanceof Array) { 140 for (i=0; i
270 var _loop = function _loop(i) { 271 var attr = elements[i].getAttribute("on"); 272 var action = elements[i].getAttribute("action"); 273 elements[i].addEventListener(attr, function () { 274 eval(action); 275 }); 276 };
522 var _loop4 = function _loop4(_i4) { 523 var clonedEl = clonedEls[_i4]; 524 dynamics.css(clonedEl, { 525 translateX: Math.random() * 10 - 5 526 }); 527 528 dynamics.setTimeout(function () { 529 dynamics.css(clonedEl, { 530 translateX: 0 531 }); 532 }, 50); 533 534 dynamics.setTimeout(function () { 535 dynamics.css(clonedEl, { 536 translateX: Math.random() * 5 - 2.5 537 }); 538 }, 100); 539 540 dynamics.setTimeout(function () { 541 document.body.removeChild(clonedEl); 542 }, 150); 543 };
349 function loopWith(fn: (e: ILoopEvent) => void) { 350 return (e: ILoopEvent) => { 351 loop(e, fn); 352 }; 353 }
71 (function loop(){ 72 if(self.step()) { 73 self.timeout = setTimeout(loop, self.rate); 74 } else { 75 self.timeout = undefined; 76 self.onend(); 77 } 78 })()