Is it possible to merge several jQuery DOM objects into one array and call jQuery methods on all of them?

F.ex:

<button>one</button>
<h3>two</h3>

<script>

var btn = $('button');
var h3 = $('h3');

$([btn,h3]).hide();

</script>

This doesn't work. I know I can use the 'button,h3' selector here but in some cases I already have several jQuery DOM elements and I need to merge them so I can call jQuery prototypes on all of them.

something like:

$.merge([btn,h3]).hide();

would work. Any ideas?

UPDATE:

Solved it. You can do it like this:

$.fn.add.call(btn,h3);

I'm going to accept the add() suggestion as for pointing me in the right direction.

link|improve this question

@David, why the bizarre use of call? btn.add(h3) works... – nickf Dec 10 '09 at 15:53
Because I do not know the first object, so I can't chain. Apply() would be even better, so I can send an array using $.fn.add.apply(arr.shift(),arr); – David Dec 10 '09 at 16:21
is there a way to add more than 2 objects ? – vsync Mar 31 '10 at 7:41
2  
If you don't know the first object, you can avoid using call by chaining off an empty jQuery object: $().add(btn).add(h3). IMO, this is a much better way to use $.add. – Matt Ball Aug 19 '10 at 18:58
feedback

6 Answers

up vote 9 down vote accepted

You could use the add method.

link|improve this answer
1  
Yes, like this: $.fn.add.call(btn,h3); – David Dec 10 '09 at 15:41
feedback
$(btn).add(h3).hide();

Not sure if it works though, documentation for add doesn't mention haivng the jQuery object as a parameter but only a list of elements, so it that doesn't work this should:

$(btn).add(h3.get()).hide();
link|improve this answer
feedback

.add() does exactly what you're after.

h3.add(btn).hide();

If you wanted to make it a little more convenient for yourself, with a "merge" function like in your question, this could be added easily:

$.merge = function(objs) {
    var ret = objs.shift();
    while (objs.length) {
        ret.add(objs.shift());
    }
    return ret;
};

$.merge([h3, btn]).hide()
link|improve this answer
3  
JQuery now has a merge function so something other than $.merge should be used. – Tom Hubbard Mar 9 '11 at 15:48
feedback

$.map can flatten arrays:

function merge(array_of_jquery_objects) {
    return $($.map(array_of_jquery_objects, function(el) {
        return el.get();
    }));
}
link|improve this answer
feedback

You could always write a selector that accepts both:

$('button, h3').hide();
link|improve this answer
Yes I know, but that's not the question... I need to merge already existing DOM objects into one, similar to what your example would return. – David Dec 10 '09 at 15:28
@David: in this case, your example in the question with hide() function was bad and misleading, because even after reading your question multiple times it's still not clear why the selectors like above aren't good enough for you, even if you possibly want to call methods on these objects repetitively... The selector above just works, and could be used later in the code like this: var $myObjects = $('button, h3'); // ... ; $myObjects.hide();... So maybe you should rather clarify your question before downvoting answers. – Sk8erPeter Nov 2 '11 at 9:00
feedback

$('h3,button') returns one jQuery collection, and should be suffcient.

link|improve this answer
Did you read the question? – David Dec 10 '09 at 15:35
Obviously not good enough,tho` now I got learned. – Sveisvei Dec 14 '09 at 6:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.