I'm working with a bit of html and Javascript code that I've taken over from someone else. The page reloads a table of data (via an asynchronous request) every ten seconds, and then re-builds the table using some DOM code. The code in question looks something like this:
var blah = xmlres.getElementsByTagName('blah');
for(var i = 0; i < blah.length; i++) {
var td = document.createElement('td');
var select = document.createElement('select');
select.setAttribute("...", "...");
select.onchange = function() {
onStatusChanged(select, callid, anotherid);
};
td.appendChild(select);
}
When the onchange
event is fired for a <select>
element however, it seems like the same values are being passed to the onStatusChanged()
method for every <select>
in the table (I've verified that in each iteration of the loop, callid
and anotherid
are being given new, distinct values).
I suspect this is occuring because of the nature of how I am setting the event handler, with the select.onchange = function()
syntax. If I understand how this is working correctly, this syntax sets a closure for the onchange event to be a function which refers to these two references, which end up having a final value of whatever they are set to on the last iteration of the loop. When the event fires, the value referenced by callid
and anotherid
is the value set in the last iteration, not the value set at the individual iteration.
Is there a way that I can copy the value of the parameters I am passing to onStatusChanged()
?
I've changed the title to better reflect the question and the accepted answer.