How to close a window?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • mahesr
    New Member
    • Nov 2006
    • 7

    How to close a window?

    Hi,

    Any one say, How to close a window (it's opened by click event,ie window.open) when we redirect to parent. am opened a child window in parent through click event.after processing that page am must go,refresh the parent,at same time the child window should close after display some message.

    thanks in adv.

    Mahes
  • vituko
    New Member
    • Dec 2006
    • 48

    #2
    php can't help you, but js :
    open(URL,frameN ame,attributes) , arguments are strings :
    open ("http://...", "frameName" , "width=120,heig ht=300,scrollba rs=NO")
    frameName.close ()

    Comment

    Working...