Feedback on: irt.org FAQ Knowledge Base Q1476
Worth:
Very worth reading
Length:
Technical:
Comments:
Very very helpful. Thanks a lot.
Worth:
Worth reading
Length:
Just right
Technical:
Just right
Comments:
You can simply close a child window right away the parent window closes by using this:
<script language="JavaScript">
function popup(url)
{
theChild = window.open(url,'windowname','width=640,height=480');
}
<a href="#" onMouseOver="popup('your_url');" onMouseOut="theChild.close()">Popup</a>