One way is to use yourJQ.get(0), yourJQ.get(1) etc. But what about
just selecting against it with:

$("a selector goes here", yourJQ).doSomething();

Or:

yourJQ.each(function(i) {
    alert(this);
});

I'm sure someone will say not to use .get() but I can't remember the
other way it's done ;)

Adrian

On Oct 5, 11:52 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
wrote:
> I am loving the jCarousel Lite plugin, but I need to be able to
> control an FLV player that is in the currently displayed list item.
> Because I have 2 FLV players, and I need to stop only the playing one
> when the carousel changes to the next slide.
>
> I know that there are callback functions that return a jquery object
> that selects all the visible items in the carousel, but I don't know
> how to get into that object. Which is a failing of my jquery knowledge
> more than anything :>
>
> So can anyone help? I've done a bit of searching for jquery array
> stuff, but haven't found anything useful for this particular case.
>
> Thanks for your time.

Reply via email to