I have two identical click events for two different elements that do not share a class, as such:

$("#element_1").click(function(){
  alert("hello world");
});

$("#element_2").click(function(){
  alert("hello world");
});

I am looking for a way to assign that same click function to both of them without externalizing the function or repeating it (as seen above). If the elements shared the same class, I would have done something like this:

$(".element_class").click(function(){
  alert("hello world");
});

but they do not. How do I achieve something like that in jQuery 1.3?

Thank you!

link|improve this question

feedback

2 Answers

up vote 11 down vote accepted
$('#element_1, #element_2').bind('click', function() {...});

http://docs.jquery.com/Selectors

link|improve this answer
thank you all for the information! All voted up. First got marked as answer! – yuval Jul 17 '09 at 23:04
your welcome. Jquery is a dream once you get the hang of it! – jskulski Jul 19 '09 at 0:16
feedback

You can use

$('#element1, #element2').click();

Or

$('#element1').add('#element2').click();

Both methods are good

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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