refreshing a page from another page

Discussion in 'JavaScript' started by bs0409, Aug 30, 2006.

  1. #1
    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...
     
    bs0409, Aug 30, 2006 IP
  2. Darrin

    Darrin Peon

    Messages:
    123
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #2
    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');
     
    Darrin, Aug 30, 2006 IP