I want to add an event listener to all of my tags, each passing a reference to itself as a parameter when the even is triggered. Here is the function I wrote:
function validateDigitsFeature()
{
// Add the event listeners to input tags
// Get the array of input tags
var inputTags = document.getElementsByClassName('validateInput');
var tagId;
// Loop through them, adding the onkeypress event listener to each one
for (var i = 0; i < inputTags.length; i++)
{
// Give each input element an id
tagId = inputTags[i].id = 'input_id_' + i;
inputTags[i].addEventListener('keyup', function(){isNumberOrDot(event, tagId);}, false);
}
}
Basically the function should do the following:
- Store all the input tags with the specified classname in an array
- Loop through the array, adding an id to each tag and
- Adding the
onkeyupevent listener with theisNumberOrDot(event, tagId)handler.
Problem
The onkeyup event is added, but they handlers of each one is always referencing the tagIdof the last element of the array.
Question
What is wrong with the code/logic? And how can it be fixed?
Note
Sure this problem is related to JavaScript Closure in loops, while this question could have a more general answer, it is specific to event listeners being used. To more advanced developers, it might be easy to apply the general solution to this problem. But to me the other solutions still didn't provide a full explanation or even worked.
Thank you in advance.