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??
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: