How can I ignore first element and get rest of the elements?
<ul>
<li><a href="#">some link</a></li>
<li><a href="#">some link 2</a></li>
<li><a href="#">link i want to find</a></li>
</ul>
Thanks
|
How can I ignore first element and get rest of the elements?
Thanks |
|||
|
if you want to ignore the "first" element only then:
if you want the last only (like your example seems to suggest):
|
|||||||||||||
|
|
You can use For instance, if you wanted to address all of the
and it would work as expected, returning all of the However, if you wanted to address all of the You need to wrap the expression that selects the
Alternatively, you could also use an expression like this:
That will find all |
||||
|
|
|
Assuming you want the anchor:
|
|||
|
|
ul, or if you mean from theulthe first element isli, or do you want to select allaelements then skip the first one of those? – Mads Hansen Apr 14 '10 at 1:05