I know that live() can be used to support event handlers for current AND "added later" DOM elements.
I wonder how to do the same thing with each()?
Like if I have $('.something_or_other').each() but then another DOM element with class="something_or_other" gets added? How can I set it up to automatically apply the each iteration to this new DOM element?
OR, what can I call after adding the new DOM element to reapply the each() rules.
(Showing my age a bit here but in Behaviour we can use Behaviour.apply() to reapply ALL of the rules!)