I have a html structure likes this:
<table>
<tr>
<td>
<input class="text-center inputForSum" type="text" name="menge" value="1.00" />
</td>
</tr>
<tr>
<td>
<input class="text-center inputForSum" type="text" name="menge" value="1.00" />
</td>
</tr>
<tr>
<td>
<input class="text-center inputForSum" type="text" name="menge" value="1.00" />
</td>
</tr>
</table>
and a on change function:
$( ".inputForSum" ).change(function() {
console.log( $('.inputForSum').val() )
});
But I need to know, WHICH input field with the class "inputForm" has changed. How can I realize this?