Click to See Complete Forum and Search --> : Closing Message


golgeyele
08-21-2003, 09:00 AM
Hi;
I close a windows by self.close() but it writes down a message like "do you want to close this window.... yes or no?". I don't want any messages.How can I prevent this?

AdamGundry
08-21-2003, 09:22 AM
According to browser security restrictions, you should not be able to, but this hack may work:

window.opener = top;
window.close();

Adam