I have a list similar to this (with an arbitrary amount of li's):
<ul>
<li>
<div class="box">
<table>
<tr>
<td>Product 1</td>
<td><input type="hidden" class="hiddenid" value="5" /></td>
<td><input type="checkbox" value="yes" /></td>
</tr>
</table>
</div>
</li>
<li>
<div class="box">
<table>
<tr>
<td>Product 2</td>
<td><input type="hidden" class="hiddenid" value="6" /></td>
<td><input type="checkbox" value="yes" /></td>
</tr>
</table>
</div>
</li>
</ul>
<input type="submit" id="submit" />
and I need to use JQuery to loop through each item and collect the #hiddenid value for each item with a checked checkbox, once #submit is clicked (eventually I will pass this string to a php page and onto a database).
This is my attempt at the JQuery, however being a relative beginner (i.e. noob) I am very lost...
<script>
$(document).ready(function() {
$(".arrow").click(function() {
var id = $.each("#stockyesno:checked").closest(".box").find(".hiddenid").val();
alert(id);
});
});
</script>
I am hoping there is a way to correct the traversing of my id variable so its not more complicated...
I have simplified the question, but I'm sure if this can be answered I can scale the answer to my more complicated code.
Thanks for the help in advance!
.card? – SLaks Dec 15 '10 at 16:19