|
Window.opener refresh/reload
I have a page (index.asp) that lists entries from a database.
This page then opens another Window (using javascript). This then adds another record to the database (filename is addJob.asp).
What I need to do is Close this window BUT refresh the opener (index.asp) which will show the newly inserted record.
Ive managed to get the following working on index.asp
javascript:window.close();window.parent.document.location.reload(true);
but not on addjob.asp.
Any suggestions?
|