$(t).html()
returns
<td>test1</td><td>test2</td>
I want to retrieve the second td from the $(t) object. I searched for the solution but nothing worked for me. Any idea how to get the second element.
returns
I want to retrieve the second td from the |
||||
|
|
|
grab the second child:
or, grab the second child
|
|||
|
|
|
Here's a solution that maybe is clearer to read in code: To get the 2nd child of an unordered list:
And a more elaborated example: This code gets the text of the 'title' attribute of the 2nd child element of the UL identified as 'my_list':
|
||||
|
|
|
In addition to using jQuery methods, you can use the native
Assuming
EDIT: Forgot to delete the |
||||
|
|