Thanks Sean, I ended up using the second one as a basis.  Here's what
I ended up with:

$("~ span:first", this);

This gives me the single next span, just like I wanted.



On Jul 9, 9:12 pm, "Sean Catchpole" <[EMAIL PROTECTED]> wrote:
>  $('#span1').bind('click', function() { return $(this).next("span"); });
> or
> $('#span1').bind('click', function() { return $("~ span",this); });
>
> ~Sean

Reply via email to