I've been following a guide on expandable rows and now I'd like to know what row has been clicked in my table.

The table has this format:

Parent
--child
--child
Parent
etc.

When a child row is clicked, I'd like to know what text is in the cell (only the text, not the html or more information). How do I retrieve that data?

$(function() {
    $('tr[class^=child-]')
    .css("cursor","pointer")
    .attr("title","Click for more info")
    .click(function(){
        //Get row cell text (perhaps use $(this)?
    });
});
link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Try simply using $(this).find('td:first').text() if I understand your question correctly.

link|improve this answer
I have two columns. $(this).text() gives the result: column1.text + column2.text. I do not want the text from both column. Ideas? – Dennis S Jun 7 '11 at 6:38
@Dennis Which column do you want it from? – alex Jun 7 '11 at 6:40
Hey, that worked. Thank you very much! This language is too simple for me :) – Dennis S Jun 7 '11 at 6:43
feedback
$(this).text()

docs

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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