> I was looking over the API and saw the $().siblings(expr) method. Could that
> be used to accomplish something similar to the above? like:
> $('dt').siblings('dd').not('dt') ??
The primary difference between siblings and 'nextUntil' is that
siblings will get all dd siblings - both before, after, and after the
next dt. If all you need is to find all dd element siblings, then this
is more than sufficient:
$("dt").siblings("dd")
--John
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/