Hi I am passing a value from the selected item in a dropdown list to a hidden field (00N200000013PAx).
This is the code:
When I take out the first two zeros in (00N20000013PAX[hidden field]) it works but it has to be with two zeros because of a third party integration.
Any ideas?
Thanks in advance.
This is the code:
Code:
function onChange(){
var Current = document.destin.procedure.selectedIndex;
document.form.00N200000013PAx.value = document.form.procedure.options[Current].value;
}
When I take out the first two zeros in (00N20000013PAX[hidden field]) it works but it has to be with two zeros because of a third party integration.
Any ideas?
Thanks in advance.