Hello people here is my code
function send(Eqt_Param,Eqt_Param_value)
{
var Eqt_Paramv=Eqt_Param+'='+Eqt_Param_value;
alert(Eqt_Paramv);
}
every time Eqt_Param
and Eqt_Param_value
will be different ...iam sending values onclick
so run this script for 5 times well i get 5 different values overall.but now i need to save each value in an array so that i can use the array element in the script function again,
plzz help me to fix this