I am trying to pass variables in Ajax.Request method. I can see that we
can pass a single variable as:-
new Ajax.Request('/controller/action?id=" + value + "&status=JOINING',
{asynchronous:true, evalScripts:true, parameters:'resume[comment]=' +
$F('resume_comment" + forward_value + "')}); return false;");
I hope that i am correct.. Now i want to pass the value of another
input.. whose id is joining_date1. And then i tried this way:-
new Ajax.Request('/controller/action?id=" + value + "&status=JOINING',
{asynchronous:true, evalScripts:true, parameters:'resume[comment]=' +
$F('resume_comment" + forward_value + "'), 'joining_date=' +
$F('joining_date" + forward_value + "')}); return false;");
But now both of the variables are not passing.. Can you guys give me
some light that what i am missing here .. ?