I am trying to work out how to get the value of table cell for each row using jquery.

My table looks like this...

<table id="mytable">
<tr><th>Customer Id</th><th>Result</th></tr>
<tr><td>123</td><td></td></tr>
<tr><td>456</td><td></td></tr>
<tr><td>789</td><td></td></tr>
</table>

I basicly want to loop though the table, and get the value of the "Customer Id" column for each row.

In the code below I have worked out that i need to do this to get it looping though each row, customer not sure how to get the value of of the first cell in the row.

$('#mytable tr').each(function() {

    var cutomerId = 

}

Many Thanks!

link|improve this question

feedback

8 Answers

up vote 72 down vote accepted

If you can, it might be worth using a class attribute on the TD containing the customer ID so you can write:

$('#mytable tr').each(function() {
    var customerId = $(this).find(".customerIDCell").html();    
 }

Essentially this is the same as the other solutions (possibly because I copypasted), but has the advantage that you won't need to change the structure of your code if you move around the columns, or even put the customer ID into a < span >, provided you keep the class attribute with it.

By the way, I think you could do it in one selector:

$('#mytable .customerIDCell').each(function()
{
  alert($(this).html());
});

If that makes things easier

link|improve this answer
I would say $('#mytable td.customerIDCell').each(function() { alert($(this).html()); }); but +1 – Matt Briggs Dec 17 '08 at 21:56
:-) thanks - but what if you want to put it into a span (I may have badly formatted the span in my answer!) – Jennifer Dec 17 '08 at 21:57
Think this one suits my requirments the best, but the other sugestions seem viable. Many Thanks to all that answers, stackoverflow rocks, thanks to you guys! – Sean Taylor Dec 17 '08 at 22:03
feedback
$('#mytable tr').each(function() {
    var customerId = $(this).find("td:first").html();    
});

What you are doing is iterating through all the trs in the table, finding the first td in the current tr in the loop, and extracting its inner html.

To select a particular cell, you can reference them with an index:

$('#mytable tr').each(function() {
    var customerId = $(this).find("td").eq(2).html();    
});

In the above code, I will be retrieving the value of the third row (the index is zero-based, so the first cell index would be 0)


Here's how you can do it without jQuery:

var table = document.getElementById('mytable'), 
    rows = table.getElementsByTagName('tr'),
    i, j, cells, customerId;

for (i = 0, j = rows.length; i < j; ++i) {
    cells = rows[i].getElementsByTagName('td');
    if (!cells.length) {
        continue;
    }
    customerId = cells[0].innerHTML;
}

link|improve this answer
1  
Thanks, this was more useful to me as I don't have control on the markup of the document I wish to parse using jQuery. So being able to use "td:first", "td:last", etc was a great help. – atomicules Jul 16 '10 at 9:33
1  
+1 nice post thanks! :) – Anand Thangappan Feb 7 at 9:38
feedback

a less-jquerish approach:

$('#mytable tr').each(function() {
    if (!this.rowIndex) return; // skip first row
    var customerId = this.cells[0].innerHTML;
});

this can obviously be changed to work with not-the-first cells.

link|improve this answer
feedback
$('#mytable tr').each(function() {
  // need this to skip the first row
  if ($(this).find("td:first").length > 0) {
    var cutomerId = $(this).find("td:first").html();
  }
});
link|improve this answer
There's no need to skip the first row, because it contains <th>, not <td>, so their data won't be extracted – Andreas Grech Dec 17 '08 at 21:32
").legth should be ").length – Mark Schultheiss Jul 16 '10 at 15:48
feedback

This works

$(document).ready(function() {
    for (var row = 0; row < 3; row++) {
        for (var col = 0; col < 3; col++) {
            $("#tbl").children().children()[row].children[col].innerHTML = "H!";
        }
    }
});
link|improve this answer
feedback

Y not you use id for that column? say that:

    <table width="300" border="1">
          <tr>
            <td>first</td>
          </tr>
          <tr>
            <td>second</td>
          </tr> 
          <tr>
            <td>blah blah</td>
            <td>blah blah</td>
            <td id="result">Where the result should occur</td>
          </tr>
    </table>


<script type="text/javascript">
        $('#result').html("The result is....");
</script>
link|improve this answer
feedback

try this :

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html>
<head>
    <title>Untitled</title>

<script type="text/javascript"><!--

function getVal(e) {
    var targ;
    if (!e) var e = window.event;
    if (e.target) targ = e.target;
    else if (e.srcElement) targ = e.srcElement;
    if (targ.nodeType == 3) // defeat Safari bug
        targ = targ.parentNode;

    alert(targ.innerHTML);
}

onload = function() {
    var t = document.getElementById("main").getElementsByTagName("td");
    for ( var i = 0; i < t.length; i++ )
        t[i].onclick = getVal;
}

</script>



<body>

<table id="main"><tr>
    <td>1</td>
    <td>2</td>
    <td>3</td>
    <td>4</td>
</tr><tr>
    <td>5</td>
    <td>6</td>
    <td>7</td>
    <td>8</td>
</tr><tr>
    <td>9</td>
    <td>10</td>
    <td>11</td>
    <td>12</td>
</tr></table>

</body>
</html>
link|improve this answer
feedback
$(document).ready(function() {
     var customerId
     $("#mytable td").click(function() {
     alert($(this).html());
     });
 });

//from jithin (jithus.tvr@gmail.com)

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.