I need to selected all the "Last One" rows. I have tried :nth-child, :last, .siblings().. etc.. im at a total lost here. Can anyone shed some light on how to do this ?
<div class="container">
<div class="row">Stuff 1</div>
<div class="row">Last One</div>
<div class="container">
<div class="row">Last One</div>
</div>
<div class="container">
<div class="row">Stuff 1</div>
<div class="row">Stuff 2</div>
<div class="row">Last One</div>
<div class="container">
<div class="row">Stuff 1</div>
<div class="row">Stuff 2</div>
<div class="row">Stuff 3</div>
<div class="row">Last One</div>
</div>
</div>
</div>
<div class="container">
<div class="row">Stuff 1</div>
<div class="row">Last One</div>
</div>
Heres a quick example of what i have right now that almost works..
Having an issue when using treeview plugin with jq 1.3.2. I can get it to work in jq 1.2... Pretty much, from what i can tell, its not applying the classes to the ul and li tags. I think it has something to do with the way the selectors are trying to find the tags. Has anyone successfully used treeview plugin with jq 1.3.2 ?