We assume that we have the following div with the following elements:
<div id="globalDiv" onchange="checkChange()">
<input id="i1" type='number'/>
<input id="i2" type='number'/>
<input id="i3" type='number'/>
<input id="i4" type='number'/>
<input id="i5" type='number'/>
<input id="i6" type='number'/>
</div>
My question is: can I know which element of type 'input' has been modified?
Note:
I know that one solution is to place the onchange = "checkChange (this)" in each input but I see it redundant.