Only (very) a little shorter, but:
$([$obj1, $obj2, $obj3]).click(function() { });
You would like to define your handler outside of the first anonymous function, so you really would be better off using the Jonas H. method by simply adding another sentence.
Note: you can technically make a hybrid, but it's quite long:
var f = function() { }; $([$obj1, $obj2, $obj3]).click(f);
Indeed, this question is only useful if you want to avoid $ a.click (f) again and again, which is really a better option than this abuse of jQuery. :)
source share