span tag inside a dynamically generated td - jquery
        Posted  
        
            by 
                user1017268
            
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by user1017268
        
        
        
        Published on 2012-04-15T05:24:41Z
        Indexed on 
            2012/04/15
            5:29 UTC
        
        
        Read the original article
        Hit count: 231
        
I have a dynamically generated page of an enterprise application. The data is inside table structure. I need to access a value of span tag inside this table.
The page code looks like
<td class="dCCItemValue" valign="bottom>
<span id="S_0_1_5">Problem type</span>
The id of the span tag is also generated dynamically and I have no control over it. So the problem statement becomes: How to get value span inside a td with class "dCCItemValue"
I hope I have explained the problem correctly. Please Help
© Stack Overflow or respective owner