Loans - Debt Consolidation - Debt Consolidation - Debt Consolidation - WoW Gold

PDA

View Full Version : refreshing a page from another page


bs0409
Aug 30th 2006, 6:14 am
suppose i have opened a page using window.open method....
is it possible to refresh the opened page from the parent page by some method...

Darrin
Aug 30th 2006, 10:23 am
Yeah, creat an object to reference your child window:

var childWin - window.open('url');

then, reference the childwindow:
childWin.window.history.go(0);

or

childWin.window.navigate('sameURL.htm');