Skip to main content
Inspiring
December 7, 2011
Question

Refresh a DIV

  • December 7, 2011
  • 2 replies
  • 854 views

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

    This topic has been closed for replies.

    2 replies

    adamaas
    Known Participant
    December 14, 2011

    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.

    Inspiring
    December 7, 2011

    Google "javascript update parent window from child".