I am a newbie in javascript. I am not sure what am I doing wrong here. I want to pass in a variable which is a function to an onclick event of an anchor tag.I could not figure out. Thanks in advance.
var test = function(val1, val2) { alert("bla"); };
$.each( result, function (key, value){ var a = key; var b = key+value; var doSomething = function() { test (a, b)); $('#id').bind("click", test); });
I need to create the anchor tags dynamically and pass multiple variables to "onclick" event. so what I am trying to do is create a variable function dynamically inside a for loop and bind it to an anchor tag
onclick='test()'in the string (without concatenation). – nhahtdh Oct 15 '12 at 6:41