How to pass arguments to addEventListener listener function? - Stack Overflow most recent 30 from stackoverflow.com2009-11-24T04:42:33Zhttp://stackoverflow.com/feeds/question/256754http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/256754/how-to-pass-arguments-to-addeventlistener-listener-function1How to pass arguments to addEventListener listener function?Abhishek Yadav2008-11-02T10:36:14Z2008-11-02T14:57:04Z
<p>The situation is somewhat like-</p>
<pre><code>var someVar;
someVar = some_other_function();
someObj.addEventListener("click",
function(){
some_function(someVar);
},
false);
</code></pre>
<p>The problem is that the value of someVar is not visible inside the listener function of the addEventListener, where it is probably being treated as a new variable.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/256754/how-to-pass-arguments-to-addeventlistener-listener-function/256763#2567630Answer by Sergey Ilinsky for How to pass arguments to addEventListener listener function?Sergey Ilinsky2008-11-02T10:51:50Z2008-11-02T10:51:50Z<p>There is absolutely nothing wrong with the code you've written. Both some_function and someVar should be accessible, in case they were available in the context where anonymous function(){some_function(someVar);} was created. </p>
<p>Check, if the alert gives you the value you've been looking for, be sure it will be accessible in the scope of anonymous function (unless you have more code that operates on the same someVar variable next to the call to addEventListener)</p>
<pre>
var someVar;
someVar = some_other_function();
alert(someVar);
someObj.addEventListener("click",
function(){
some_function(someVar);
},
false);
</pre>
http://stackoverflow.com/questions/256754/how-to-pass-arguments-to-addeventlistener-listener-function/256945#2569451Answer by Thevs for How to pass arguments to addEventListener listener function?Thevs2008-11-02T14:57:04Z2008-11-02T14:57:04Z<p><code>someVar</code> value should be accessible only in <code>some_function()</code> context, not from listener's.
If you like to have it within listener, you must do something like:</p>
<pre><code>someObj.addEventListener("click",
function(){
var newVar = someVar;
some_function(someVar);
},
false);
</code></pre>
<p>and use <code>newVar</code> instead.</p>
<p>The other way is to return <code>someVar</code> value from <code>some_function()</code> for using it further in listener (as a new local var):</p>
<pre><code>var someVar = some_function(someVar);
</code></pre>