.all()
Description:
Defines the end of an each-loop.
- - no parameters -
Tip:
The call to .all()
is independent from the specific context at the time of invocation.
Thus it allows to collect primitive values from each single element in an array-like jQuery object.
Usage pattern
Examples with ending for the each-loop
Example #15: enable continue button only after making choices
In this example the continue button should get enabled only if for each choice the user has selected some value.
The used parallel .each()..all() loop waits for each line until some radio input is selected. Any order of making choices is allowed.
⇒Example #18: falling little boxes
This example first creates 25 little boxes with an inline definition:These 25 boxes shall be animated as falling down with each button click.
A helper function is necessary to animate them in reverse order:Try clicking on that button multiple times during animation. With .stop(true,true) and .unwait() all animations are reset at the beginning.
⇒