According to http://api.jquery.com/jQuery/ you can do just that:
jQuery( elementArray ) elementArrayAn array containing a set of DOM elements to wrap in a jQuery object.
If this does not work, maybe your array is not the actual array, so you can try:
$('#id',$($.makeArray(array)));
source share