Copy link to clipboard
Copied
I have a DIV and with in the DIV has form entries and other information.
What I am trying to accomplish is for the USER to upload a file in a pop up form and use the contents of the Uploaded file to populate form values within the DIV.
How do I accomplish this
Copy link to clipboard
Copied
Google "javascript update parent window from child".
Copy link to clipboard
Copied
In your pop up, use this code javascript to do it after you've done your upload and insert.
opener.location.reload(true);
self.close();
this should work.