navrsalemile
Programmer
I have following Javascript function:
function onRGLink(rGCode) {
frmRG.com.abc.xyz.rGCode.value = rGCode;
frmRG.submit();
}
I do not know how to delimit parameter com.abc.xyz.rGCode inside the statement
frmRG.com.abc.xyz.rGCode.value = rGCode;
I tried both frmRG.'com.abc.xyz.rGCode'.value = rGCode;
and frmRG."com.abc.xyz.rGCode".value = rGCode;
but no success. I have to have dots in this parameter name.
many thanks,
Mile
function onRGLink(rGCode) {
frmRG.com.abc.xyz.rGCode.value = rGCode;
frmRG.submit();
}
I do not know how to delimit parameter com.abc.xyz.rGCode inside the statement
frmRG.com.abc.xyz.rGCode.value = rGCode;
I tried both frmRG.'com.abc.xyz.rGCode'.value = rGCode;
and frmRG."com.abc.xyz.rGCode".value = rGCode;
but no success. I have to have dots in this parameter name.
many thanks,
Mile