> The action for the form is only fired if the  onClick="window.close() is
> removed. My question is how can I close the window and refresh or reload
> the specified window.
> 
<script language="javascript">
function endWindow()
{
        window.opener.location.reload();
        window.close();
}
</script>
<a href="javascript:endWindow()">Close Window</a>

M:

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to