How to copy form field values โโfrom one set of fields to another using javascript.
The idea here is to use the "Use Delivery / Billing Address" button, which copies user information from one block of fields to another identical set of fields.
I am now invoking an action on a button click to execute the following javascript:
this.field1.value = this.field2.value;
However, this action results in an "undefined" error in the debugger.
javascript pdf acrobat
Caseyhunt
source share