Add elements to jQuery object:

http://docs.jquery.com/Traversing/add#expr

Delete elements from jQuery object:

http://docs.jquery.com/Traversing/not#expr

You can also use .filter, but that's the inverse of .not. It's a little more
powerful though in that you can provide an expression or a function. Take a
look at:

http://docs.jquery.com/Traversing/filter#expr
http://docs.jquery.com/Traversing/filter#fn

There are examples for each on those pages.

- Richard

On Sun, Jul 13, 2008 at 7:22 AM, wolf <[EMAIL PROTECTED]> wrote:

>
> > Check out the functions here, particularly under Filtering:
> > http://docs.jquery.com/Traversing
>
> thx. i am aware of those methods but can't see how i can "add this,
> delete that" element from a jQuery object using those. i gather that
> underlyingly jQuery is using some sort of Array object to manage its
> collections, so maybe it would be easiest to manipulate that object.
> however, i can't find it in the source. does anyone have a clue how to
> uncover it?
>
> _wolf
>

Reply via email to