Click here to Skip to main content
15,913,722 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hello All,


Please give me solution,

window.close() is not working in FirFox.

I have set about:config in dom variable true ,its working fine.

But i want this through javascript/coding.

Please help me.
Posted

Using javaScript, you can only close windows that you previously opened, like:
JavaScript
var myWindow = window.open('http://www.google.com');
...

myWindow.close();

You can not close arbitrary windows.
 
Share this answer
 
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900