Not possible in plain jQuery, since the syntax is already used for DOM elements.
But a simple plugin will do the job perfectly:
http://jsfiddle.net/gMDjZ/
a = $('div:eq(0)'); b = $('div:eq(1)'); c = $('div:eq(2)'); d = $('div:eq(3)'); e = $('div:eq(4)'); f = $('div:eq(5)'); jQuery.fromArray = function(a) { var c = jQuery(); for(x in a) { c = c.add(a[x]); } return c; } console.log($.fromArray([a,b,c,d,e,f]).find('a'))
source share