In jQuery, selecting more than one element can be done like this:
$(\"#id1,#id2\").show();
But when I have two jQuery objects, I don\'t see
You can use each cycle:
$([jqId1, jqId2]).each( function(){ $(this).show(); });
As answered here: Select multiple jQuery objects with .add()