Sorry if this is a duplicate, the google-groups page seems to be
acting up on me.
-------------------------------------------------------------------------------------------------------------------
I'm working on a script that gets <option> elements based on some
logic. So I have
if(!myArray[myIndex]) {
myArray[myIndex] = $(this).get(0);
}
else {
myArray[myIndex] += $(this).get(0);
}
Then later I append them to an select element with:
$(this).append(myArray[thisIndex]);
which works great if the myArray[thisIndex] only has one element, but
if the array has more than one object I get [object HTMLOptionElement]
[object HTMLOptionElement] etc.
Is the only way append object to loop through an array of individual
objects or is there a simpler way to append a bunch of objects
together?