What is the behavior of jquery when using each() loop? Is it:
- look for the first object, execute function, look for the next object...
- gather all objects in a container, then execute the function on each of them
- other (what exactly?)
An example, where it is relevant:
<div id="a">
A
<div id="b">
B
</div>
</div>
<div id="c">
C
</div>
If I execute this javascript:
$('div').each(function(index){
alert($(this).html());
$(this).remove();
}
Will I see three alerts or only two?
{ }in the editor. – Shadow Wizard Jan 19 '11 at 13:20{}. – Shadow Wizard Jan 19 '11 at 13:35