項目ごとに JavaScript 関数を動的に作成しており、後でそれらを呼び出したい、コード コメントの詳細
var i=0;
$(this).find("Tasks").each(function (i, e) {
i++;
function dynamicFunction+ i(){ }
)};
// this will result as dynamicFunction1, dynamicFunction2, dynamicFunction3 ... so on
//now i want to call them under antoher function
//so my doing this
for(var k=0;k<=i;k++)
{
dynamicFunction + k(); // this is not working
}