Is it possible to pause a for loop in javascript/jquery?
I have a $.each
, that runs through a 63 long array, which have a for
inside, which have another for
, which have yet another for
in it (Makes each
>for
>for
>for
), now each of the for
loops through the array, this makes 63^4 (Equals 15752961) different combinations, and that takes time...
Sooo, is it possible to pause it 2sec, at 2k combinations?
Reason why I want to pause the loop, is to unlock the UI...
Code:
var $arr = ["","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","0","1","2","3","4","5","6","7","8","9"],
len = $arr.length,
l = 0,
$("body").delay(1000).show(0, function(){
$.each($arr, function(index, val){ // 63
for(var i = 0; i < len; i++){ // 3969
for(var j = 0; j < len; j++){ // 250047
for(var k = 0; k < len; k++){ // 15752961
thing = val+i+j+k;
l++;
$("#loading").text(l+"/15752961");
console.log(l+"/15752961");
$("<div>"+thing+"</div><br />").prependTo("body");
}
}
}
})
})
Ps. If someone think, they could clear up my question, please do so :D
/* EDIT */
If I try to run this server side, I get a server error, both if I use foreach
or for
$smaa = range("a","z");
$store = range("A","Z");
$tal = range("0","9");
$arr = array_merge($smaa, $store, $tal);
for($i = 0; $i < $count; $i++){ // 62
for($j = 0; $j < $count; $j++){ // 3844
for($k = 0; $k < $count; $k++){ // 238328
for($l = 0; $l < $count; $l++){ // 14776336
$finish[] = $arr[$i].$arr[$j].$arr[$k].$arr[$l];
}
$finish[] = $arr[$i].$arr[$j].$arr[$k];
}
$finish[] = $arr[$i].$arr[$j];
}
$finish[] = $arr[$i];
}
foreach($arr as $first){ // 62
$finish[] = $first;
foreach($arr as $second){ // 3844
$finish[] = $first.$second;
foreach($arr as $third){ // 238328
$finish[] = $first.$second.$third;
foreach($arr as $fourth){ // 14776336
$finish[] = $first.$second.$third.$fourth;
}
}
}
}
Please note, that I don't use both on the same time