Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When using the .delegate can I choose multiple elements or should I have to use .delegate for every element that I need to work with? (function will be the same for all elements)

e.g.

$('#div').delegate('a', 'click' (function(){ // This is ok
         .delegate('a, element_2, element_3', 'click' (function(){ // IS THIS OK??
share|improve this question

3 Answers

up vote 5 down vote accepted

That is fine since 'a, element_2, element_3' is a valid selector, which is the first argument of .delegate().

BUT, your arguments are not separated by commas properly, it should be:

$('#div').delegate('a, element_2, element_3', 'click', function(){
    //function go here
});
share|improve this answer
1  
And just to drive it home, all appears to be well. – Brad Christie Jul 22 '11 at 14:50

That second method appears to be okay as it a, element_1, element_2 returns a set of elements that will have the .delegate() function applied.

share|improve this answer

Yes it is OK, the documentation states

.delegate( selector, events )

Selector being any valid jQuery selector. even your first call may return more than one element.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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