jQuery/siblings()

解説
兄弟要素を取得
sample1

s1H4

s1Div

s1p

s1Span
sample1code
function s1Func(){
  var s1Field = $("#s1Field").children();
  $(s1Field).click(function(){
  	$(this).siblings().css("color", "orange");
  });
}