Initializing new instances of a class in a loop, how can I persist an assignment to an event handler
- by Pydroid
This is a follow on question from http://stackoverflow.com/questions/3020960/why-is-my-prototype-function-not-returning-the-property-of-the-instance
$.getJSON(myjson, function(data) {
var json = data;
for (i in json) {
juuvies[i] = new Juuvy(i,json[i], font, keyfontsize, valfontsize, orbcol, orbkeycol, orbvalcol, paper);
juuvies[i].juuv_it();
var mykey = juuvies[i].init_nodes();
juuvies[i].orb.node.onmouseover = function() { console.log(mykey);};
}
});
And my init_nodes function,
Juuvy.prototype.init_nodes = function() {
return this.key;
}
At this point of time, I get only the last key in the loop, instead of a unique pass each time. Is there a way I can persist the assignment for the event handler?