html - Access grand child elements from the DOM in jquery? -


how go accessing grand child elements within in ul structure such jquery:

<ul>    <li>sample</li>    <li>sample</li>    <li>sample</li>    <li>         <ul>             <li>need access li</li>         </ul>    </li>    <li>sample</li>  </ul> 

should simple

$('ul li ul li') 

Comments

Popular posts from this blog

django - How can I change user group without delete record -

java - Need to add SOAP security token -

java - EclipseLink JPA Object is not a known entity type -