Using jQuery I can do something like this:
var x = $('#hello');
x = x.add('#bye');
This way I have both #hello and #bye elements in the query set called x. Is there a similar function in Dojo?
|
|
|
I think you're looking for
|
|||
|
|
|
I don't think there is directly, but the following should work:
Then x[0] would be #hello. x[1] would be #bye. |
|||
|
|