>  Is there a simple way to get all the siblings 
>  after a specified node?
>  <div id="x1"></div>
>  <div id="x2"></div>
>  <div id="x3"></div>
>  <div id="x4"></div>

I think $("#x2 ~ *") should work, it will select x3 and x4. You will need a
recent copy of jQuery because the ~ operator was fixed within the last
month. If your version selects x2 as well as x3 and x4 for the expression
above, it is the unfixed version.




_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/

Reply via email to