I have 16 table elements like,
<td id="test"> /Dynamic value appears here from JavaScript/ </td>
Where I put values from OnChange event, with this JavaScript
document.getElementById('test').innerHTML = value + " LT";
Now I want to know how to grab all input field values upon changing input field values in <td id="Test"> </td>
, because in the other field I want to show total amount based on other fields.
----------------------------------------------------------update I will ask other question from same opera.
How get value from input type="hidden" field, where value changed allways then user select new element on html ??
$('#hiddenField').val()
Just make sure you include the jQuery library in thehead
.