|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
I'm trying to get this to work in NS. I'd like to close the window and reload its parent. ANy ideas?
var oParent = window.opener; function closeWindow(){ oParent.reload(); window.close(); } |
|
#2
|
|||
|
|||
|
try this:
function closeWindow() { var oParent = window.opener; oParent.location.reload(); window.close(); } ------------------ xeon |
![]() |
| Viewing: Dev Shed Forums > Web Design > HTML Programming > close window / refresh parent without using onUnload |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|