$(t).html()
returns
test1test2
I want to retrieve the second td<
td<
Try this:
$("td:eq(1)", $(t))
or
$("td", $(t)).eq(1)