How do you pass parameters to called function using ASP.Net Ajax $addHandler - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T14:18:21Z http://stackoverflow.com/feeds/question/141207 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/141207/how-do-you-pass-parameters-to-called-function-using-asp-net-ajax-addhandler 0 How do you pass parameters to called function using ASP.Net Ajax $addHandler rams 2008-09-26T18:44:43Z 2008-09-26T18:58:57Z <p>I am trying to use the $addHandler function to add a handler to a text box's click event </p> <pre><code>var o=$get('myTextBox'); var f = Type.parse('funcWithArgs'); $addHandler(o, 'click', f); </code></pre> <p>However I need to pass parameters to the called function. How do you do that?</p> <p>TIA</p> http://stackoverflow.com/questions/141207/how-do-you-pass-parameters-to-called-function-using-asp-net-ajax-addhandler/141216#141216 3 Answer by Jason Bunting for How do you pass parameters to called function using ASP.Net Ajax $addHandler Jason Bunting 2008-09-26T18:46:37Z 2008-09-26T18:58:57Z <p>Wrap your function with an anonymous function (aka lambda):</p> <pre><code>$addHandler(o, 'click', function() { f(my, arguments, go, here); }); </code></pre> <p><hr /></p> <h3>Alternative solution:</h3> <p>If you had a function that created partials, you could do that as well - I use a toolkit that provides for that, and this is how it would be done:</p> <pre><code>$addHandler(o, 'click', partial(f, my, arguments, go, here)); </code></pre> <p>I don't know (and actually doubt) that Microsoft's framework provides for that, but you could look into writing your own <code>partial</code> function.</p>