vote up 3 vote down star
1

Say I have the following :

var a = $("#a");
var b = $("#b");

//I want to do something as such as the following : 

$(a,b).click(function () {/* */}); // <= does not work

//instead of attaching the handler to each one separately

Obviously the above does not work because in the $ function, the second argument is the context, not another element.

So how can I attach the event to both the elements at one go ?


[Update]

peirix posted an interesting snippet in which he combines elements with the & sign; But something I noticed this :

$(a & b).click(function () { /* */ }); // <= works (event is attached to both)

$(a & b).attr("disabled", true); // <= doesn't work (nothing happens)

From what you can see above, apparently, the combination with the & sign works only when attaching events...?

flag

79% accept rate

5 Answers

vote up 9 vote down check

The jQuery add method is what you want:

Adds more elements, matched by the given expression, to the set of matched elements

var a = $("#a");
var b = $("#b");
var combined = a.add(b)
link|flag
2  
like that :) never know this – harshath.jr Sep 7 at 7:47
vote up 3 vote down

Don't forget either that jQuery selectors support the CSS comma syntax. If you need to combine two arbitrary collections, everyone else's suggestions are on the mark, but if it's as simple as doing something to elements with IDs a and b, use $('#a,#b').

link|flag
yes I know about that, but my issue is when they are already in variables – Andreas Grech Sep 7 at 8:06
vote up 0 vote down

I just tried messing around with this, and found something very cool:

$(a & b).click(function() { /* WORKS! */ });

supersweet!

Edit: Now I feel really embarrassed for not testing this properly. What this did, was actually to put the click event on everything... Not sure why it does that, though...

link|flag
peirix, see my updated post – Andreas Grech Sep 7 at 8:14
@peirix: & is for bitwise operating on numbers. – Crescent Fresh Sep 7 at 13:04
But that doesn't explain why the whole page got the click event? It should just not be added, then, shouldn't it? – peirix Sep 7 at 13:10
@peirix: DOMElementA & DomElementB results in a value of 0 since each argument is NaN. jQuery checks if the argument passed is "falsey" (FYI 0 is falsey) and defaults to operating on the entire document if it finds such a value. – Crescent Fresh Sep 7 at 13:45
Is that deliberate? That if something is falsy, it should just run it on the whole document? Sounds very strange, and very susceptible to unknown errors... – peirix Sep 7 at 13:48
show 1 more comment
vote up 0 vote down

try this: sweet and simple.

var handler = function() {
    alert('hi!');
}
$.each([a,b], function() {
    this.click(handler);
}

BTW, this method is not worth the trouble.

If you already know there are just two of these methods, then I guess the best bet would be

a.click(handler);
b.click(handler);

Cheers!

link|flag
vote up 1 vote down

You could just put them in an array:

$.each([a, b], function()
{
    this.click(function () { });
});
link|flag
Oops, mixed up the syntax with the other each() - try now – Greg Sep 7 at 7:41

Your Answer

Get an OpenID
or

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