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()
You could put them into an array like this
var k = [one,two,three,four] $.each(k,function(){ $(this).click(function(){ //Function here }); });