passing value to eventListener functions - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T10:22:23Z http://stackoverflow.com/feeds/question/875810 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/875810/passing-value-to-eventlistener-functions 0 passing value to eventListener functions amit 2009-05-18T00:13:06Z 2009-05-18T02:45:13Z <pre><code>for ( var i=0; i&lt;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#875821 1 Answer by Paul for passing value to eventListener functions Paul 2009-05-18T00:24:39Z 2009-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#875823 0 Answer by BernzSed for passing value to eventListener functions BernzSed 2009-05-18T00:25:50Z 2009-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&lt;thumbs.length; i++) { var num = i; Core.addEventListener(thumbs[i], "click", new function(evt){ Slide.thumbClick(num); }); } </code></pre>