I have a table when I click on a table row I can fetch the row with this but how can I get the value from the last td in the tr tag?
$(this); // equals my hovered tr row
I thought of something like this:
$(this:last-child).text();
Or should it be like this:
$(this + ":last-child").text(); or with .html();