[jQuery] Re: Creating an empty jQuery collection

2007-12-13 Thread McLars
Perfect! Thank you! On Dec 12, 11:05 pm, Aaron Heimlich [EMAIL PROTECTED] wrote: var emptyJQueryCollection = jQuery([]);

[jQuery] Re: Creating an empty jQuery collection

2007-12-12 Thread Aaron Heimlich
var emptyJQueryCollection = jQuery([]); On Dec 12, 2007 7:32 PM, McLars [EMAIL PROTECTED] wrote: Is there an elegant way to create an empty jQuery collection? The only way I've figured out to do it is like this: var jqObjects = $(this).not(this); This seems rather stupid to me. There