Javascript Refresh targetted window
I have a window (lets call this 'one') which loads an iframe ('two'). In the 'one' I also have a button which brings up a popup ('three').
The 'three' contains a form and 'two' contains the existing data in the db that was submitted through the form.
What I am trying to do is once the form is submitted (in 'three') to have ONLY the iframe update.
Is this possible? window.opener.location.reload(true) reloads the main page ('one') and this is bad as it resets the data in there.
help me please!
|