How to select all child elements of specified control using jQuery
        Posted  
        
            by abatishchev
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by abatishchev
        
        
        
        Published on 2010-05-18T17:27:21Z
        Indexed on 
            2010/05/18
            17:30 UTC
        
        
        Read the original article
        Hit count: 276
        
I have a <table id="myTable"> with a number of child elements:
<tr><td>
   <span class="mySpan" />
</td></tr>
<tr><td>
   <span class="mySpan" />
</td></tr>
<tr><td>
   <span class="mySpan" />
</td></tr>
How to select all this spans using jQuery?
© Stack Overflow or respective owner