You can't have looked terribly hard, jQuery's documentation is pretty clear on the subject: http://docs.jquery.com/Selectors
<div>
<span id="A"></span>
<p><br /><span id="B"></span></p>
<form>
<span id="C"></span>
<span id="D"></span>
</form>
</div>
basically:
$("div span")
matches any span within a div, however far nested with a div they might be (A,B,C,D)
$("div > span")
matches spans which are immediate descendts of divs (A)
$("br + span")
matches span next to a br (B)
$("form span")
matches spans within a form (C, D)
$("form span:first")
matches only the first span with a form (C)