I would like to replicate jquery object selection, for example
When i select multiple objects with
var test = $(".someclass");
I get the object with all selected objects with that class.
Now how could i keep adding objects in that war, something like test.push($(".somediv"));
Also i saw .add( jQuery object )
but it gives me error Cannot call method 'add' of null
when i try to add object to an empty variable
Also how can i create jquery variable with no values and then add them later?