Need some help here. What I'm trying to do is to get the value from a file field to show up in a text field underneath the file field when a check box is checked. Please help!
Use 'document.getElementById(myFileFieldId).value' or similar to obtain the file field value, and then insert in the text field. document.getElementById(myTextFieldId).value = document.getElementById(myFileFieldId).value; Code (markup):