Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
$(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.

share|improve this question

5 Answers

up vote 51 down vote accepted

grab the second child:

$(t).children().eq(1);

or, grab the second child <td>:

$(t).children('td').eq(1);
share|improve this answer
thank you, helped me too – DextrousDave Mar 27 at 9:11

Here's a solution that maybe is clearer to read in code:

To get the 2nd child of an unordered list:

   $('ul:first-child').next()

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':

   $('ul#my_list:first-child').next().attr("title")
share|improve this answer

Try this:

$("td:eq(1)", $(t))

or

$("td", $(t)).eq(1)
share|improve this answer

In addition to using jQuery methods, you can use the native cells collection that the <tr> gives you.

$(t)[0].cells[1].innerHTML

Assuming t is a DOM element, you could bypass the jQuery object creation.

t.cells[1].innerHTML

EDIT: Forgot to delete the [0] from the second example. Fixed.

share|improve this answer

how's this:

$(t).first().next()
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.