I have two jQuery objects:
var one = $("#one"); var two = $("#two");
And I'm looking for a way to compile another jQuery object, for example:
var oneAndTwo = $(one, two);
So I could work with him, as I get them with $("#one, #two") .
Thanks.
source share