Does the .add() method allow selecting multiple objects in one go instead of adding one at a time?
one.add(two).add(three).add(four).on(\"click\", function()
I'd prefer this array approach, purely for readability...
$([one, two, three, four]).each(function() { // your function here });