passing value to eventListener functions - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T10:22:23Zhttp://stackoverflow.com/feeds/question/875810http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/875810/passing-value-to-eventlistener-functions0passing value to eventListener functionsamit2009-05-18T00:13:06Z2009-05-18T02:45:13Z
<pre><code>for ( var i=0; i<thumbs.length; i++)
{
var num = i;
Core.addEventListener(thumbs[i], "click", Slide.thumbClick);
}
</code></pre>
<p>in the above code, i want to pass the value of <code>var num</code> to the <code>thumbClick</code> eventlistener. but i am unable to. if i try to display that value, it gives an undefined value.
pls help</p>
http://stackoverflow.com/questions/875810/passing-value-to-eventlistener-functions/875821#8758211Answer by Paul for passing value to eventListener functionsPaul2009-05-18T00:24:39Z2009-05-18T00:24:39Z<p>Don't remember for sure, but you should be able to do something like this:</p>
<pre><code>Core.addEventListener(thumbs[i], "click", function() {
//...do stuff here
});
</code></pre>
<p>var <em>num</em> should still be available to this anonymous function.</p>
http://stackoverflow.com/questions/875810/passing-value-to-eventlistener-functions/875823#8758230Answer by BernzSed for passing value to eventListener functionsBernzSed2009-05-18T00:25:50Z2009-05-18T00:34:11Z<p>One way to do it would be to create a dynamic function.</p>
<p>Something like this. (I'm basing this on my experience with other ECMAScript-based languages, you might want to double-check to make sure this works.)</p>
<pre><code>for ( var i=0; i<thumbs.length; i++)
{
var num = i;
Core.addEventListener(thumbs[i], "click", new function(evt){
Slide.thumbClick(num);
});
}
</code></pre>