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...
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');