I have this:
$(window).load(function(){
var var1 = $('selector1').find('iframe').contents().find('body').find('selector2')
var var2 = $('selector3');
// Some function
}); //end
I can do this: (somefunction() doesn't exists as a function, it could be any function)
$(var1).somefunction(someattributes);
$(var2).somefunction(someattributes);
But I want to do something like this: (jointhisselectorwith() doesn't exists as a function, it's what I want)
$(var1).jointhisselectorwith(var2).somefunction(someattributes);
It's possible to join jQuery objects? Thanks!