How do I combine jQuery object array??
I have two result.
SelectableChildren: groupHead.nextAll(".SimpleButton")
and
SelectableChildren: groupHead.nextAll(".SimpleButton").next().children(".SimpleButton")
I would like to combine them into one object so that I can bind a handle to them in one loop.
$.each(combineResult, function(index, object){ ... })
I have to make them in one, so that I can pass it around.
please help.