Link to home
Start Free TrialLog in
Avatar of Boopathy S
Boopathy SFlag for India

asked on

window.close is not working

Hello,

window.close is not working Mozilla firefox. Anybody having idea on this. Please provide suggestion for this.
Avatar of Ryan Chong
Ryan Chong
Flag of Singapore image

window.close is not working Mozilla firefox. Anybody having idea on this.

is your page opened via javascript? you probably can't close a page via javascript that not being opened via javascript in the same way.
Avatar of Boopathy S

ASKER

window.open("","_self");
window.close();

Open in new window

Like above I had given in my code. Still also its not closed.
what are you trying to do here?
Try:
window.open("","_self");
window.opener = "";
window.close();

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of lenamtl
lenamtl
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thank You all