I am creating the below table dynamically using jquery...After executing my code I get the table as below
<table id="TableView" width="800" style="margin-left: 60px">
<tbody>
<tr>
<th>Module</th>
<th>Message</th>
</tr>
<tr class="item">
<td> car</td>
<td>
<input class="name" type="text">
</td>
<td>
<input class="id" type="hidden" value="5">
</td>
</tr>
<tr class="item">
<td> bus</td>
<td>
<input class="name" type="text">
</td>
<td>
<input class="id" type="hidden" value="9">
</td>
</tr>
i used to iterate the table like this
$("tr.item").each(function() {
var quantity1 = $this.find("input.name").val();
var quantity2 = $this.find("input.id").val();
});
BY using the above query I am getting values of first row cells only...help me with jquery that will iterate through the whole rows of the table and get the row cell values in quantity1 and quantity2
$this– epascarello May 3 '12 at 15:42