@ Jacky <[EMAIL PROTECTED]> :
> After some find(), filter(), parent(), siblings()...,
> is there any convenient way to end().... back to the original $("xxx")?
> This would be good for plugins to return the original jQuery object.

I do it this way:

$.fn.plugin = function() {
        this.find().filter().parent().siblings();
        return this;
}

-- Fil


_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to