Monday, May 20, 2024
 Popular · Latest · Hot · Upcoming
171
rated 0 times [  178] [ 7]  / answers: 1 / hits: 137282  / 15 Years ago, fri, december 11, 2009, 12:00:00
<table class=checkout itemsOverview>
<tr class=item>
<td>GR-10 Senderos</td>
<td><span class=value>15.00</span> €</td>
<td><input type=text value=1 maxlength=2 class=quantity /></td>
</tr>
<tr class=item>
<td>GR-10 Senderos<br/>GR-66 Camino de la Hermandad<br/>GR 88 Senderos del Jarama<br/>Camino del Cid</td>
<td><span class=value>45.00</span> €</td>
<td><input type=text class=quantity value=1 maxlength=2/></td>
</tr>
</table>


I was trying with the next code to get the value and quantity of each item.



$(tr.item).each(function(i, tr) {
var value = $(tr + span.value).html();
var quantity = $(tr + input.quantity).val();
});


It is not working. Can anyone help me?


More From » jquery

 Answers
18
$(tr.item).each(function() {
$this = $(this);
var value = $this.find(span.value).html();
var quantity = $this.find(input.quantity).val();
});

[#98087] Wednesday, December 9, 2009, 15 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
travion

Total Points: 137
Total Questions: 96
Total Answers: 103

Location: India
Member since Wed, Aug 4, 2021
3 Years ago
travion questions
Mon, Dec 16, 19, 00:00, 5 Years ago
Sat, Oct 19, 19, 00:00, 5 Years ago
Fri, Sep 20, 19, 00:00, 5 Years ago
Wed, Nov 14, 18, 00:00, 6 Years ago
Sun, Oct 28, 18, 00:00, 6 Years ago
;