http://www.w3.org/ns/prov#value | - that is correct, however, you are only selecting 1 element, whereas you want multiple elements, use a comma separated list in the selector. last-child on multiple elements will become confusing, especially if this project ever goes into another developers hands, which is why I suggested what I did, it should be something like $('ul.subnavigation li:nth-child(2), ul.subnavigation li:nth-child(3)').a
|