I want to select #one, #two and the siblings of #two. Is there a more elegant solution that what I have?
$('#one, #two').click(function(e){
e.stopPropagation();
});
$('#two').siblings().click(function(e){
e.stopPropagation();
});