[jQuery] Re: Combine JQuery objects question

2009-07-27 Thread Michael Geary
Haven't you ever had the answer to a question, but not known you had the answer? :-) It's like the saying we had in high school: Freshmen know not that they know not. Sophomores know that they know not. Juniors know not that they know. Seniors know that they know. -Mike > From: Kean >

[jQuery] Re: Combine JQuery objects question

2009-07-27 Thread Kean
Why post the question if you had the answer? On Jul 27, 8:40 am, "www.voguemalls.com" wrote: > who knows if it is possible to join two jQuery objects to make > a new object.  For example... > > var e1 = $("#firstObject"); > var e2 = $("#secondObject"); > > var combined = e1.add(e2);  // This is

[jQuery] Re: Combine JQuery objects question

2009-07-27 Thread Liam Potter
already been answered, his example was his answer. brian wrote: appendTo()? What do you mean by "join"? On Mon, Jul 27, 2009 at 11:40 AM, www.voguemalls.com wrote: who knows if it is possible to join two jQuery objects to make a new object. For example... var e1 = $("#firstObject"); var

[jQuery] Re: Combine JQuery objects question

2009-07-27 Thread brian
appendTo()? What do you mean by "join"? On Mon, Jul 27, 2009 at 11:40 AM, www.voguemalls.com wrote: > > who knows if it is possible to join two jQuery objects to make > a new object.  For example... > > var e1 = $("#firstObject"); > var e2 = $("#secondObject"); > > var combined = e1.add(e2);  //