I’m trying to figure out how to store external variable values in the functions created during jQuery’s click() event. Here’s a sample of the code I’m working with now.
for(var i=0; i<3; i++){
$('#tmpid'+i).click(function(){
var gid = i;
alert(gid);
});
}
<div id="tmpid0">1al</div>
<div id="tmpid1">asd</div>
<div id="tmpid2">qwe</div>
So what’s happening is that the events are attaching properly, but the value of ‘gid’ is always the last incremented value of ‘i’. I’m not sure how to setup the private variable in this situation.
You can create a closure and assign
ito a local variable of the closure. Thegidvariable will then be assigned the value ofiat the point that the closure was created rather than when the function is run.