I have the following HTML:
<table>
<tr><td>...</td><td><input type="hidden" name="price[1]" value="10"></td><td>...</td>
<tr><td>...</td><td><input type="hidden" name="price[6]" value="230"></td><td>...</td>
<tr><td>...</td><td><input type="hidden" name="price[7]" value="40"></td><td>...</td>
<tr><td>...</td><td><input type="hidden" name="price[10]" value="10"></td><td>...</td>
</table>
I have also got that this is important to say that they are stored in table tds and it's preferred not to bring them out of the table. (So I updated the code to be more like in real)
What I want, is a way to select one of them by their index() number to be able to get their val().
I know that their index is counted from 0 to 3. I want to get the val() of the second one with index(1).