[jQuery] Combining jQuery Objects
Does anyone know 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 the expression I'm looking for
Thanks.