Displaying 1 result from an estimated 1 matches for "do_a_loop".
2007 Oct 09
1
returning from function within Array.each
function do_a_loop()
{
var fields = new Array(1,2,3,4);
fields.each(function(item))
{
if(item == 2){
return;
}
}
}
Im trying to do the following with prototype,
but I need to exit the do_a_loop() function not just the function
within each().
any ideas?
I was originally using a (for in) loop un...