On Oct 6, 10:00 pm, Zak <[EMAIL PROTECTED]> wrote:
> Is there an easy way to iterate over all objects in the document that
> have been given an Fx.Slide transition?
I don't know if there's a better way, but if you assign them all a
specific class beforehand then it's pretty simple. If you do that,
try this:
$$('mySlidingClass').each(function(item, index) {
item.slide('out');
});
And in your script that gives them the slide function, you could do an
addClass('mySlidingClass') to make it easier.
Anyway, I hope this helps.
Regards,
Flea