본 사이트는 여러분의 사용자 경험을 개선하기 위해 유지 보수를 진행하는 동안 기능이 제한됩니다. 도움말로 문제가 해결되지 않고 질문을 하고 싶다면 Twitter의 @FirefoxSupport 및 Reddit의 /r/firefox 채널을 활용하세요.

Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

자세히 살펴보기

how to close window in firefox using javascript that is not opened by window.open(); but this thing i urgently need to implement into my project .Thanks in ad

  • 7 답장
  • 26 이 문제를 만남
  • 6 보기
  • 최종 답변자: GopiReddyI

more options

Thanks in advance .Actually I already tried in so many ways but still problem is there. The same method window.close(); is working in other browser but not in the firefox. If there is another way let me know. I just want to fulfill my goal is closing the window when I will click the close button.

Thanks in advance .Actually I already tried in so many ways but still problem is there. The same method window.close(); is working in other browser but not in the firefox. If there is another way let me know. I just want to fulfill my goal is closing the window when I will click the close button.

모든 댓글 (7)

more options

Generally speaking, this is not allowed. Many people have posted their tricks for it over the years on the mozillaZine web development forum, so you might search there:

http://forums.mozillazine.org/viewforum.php?f=25

글쓴이 jscher2000 - Support Volunteer 수정일시

more options

Thanks For your reply but here in the provided link http://forums.mozillazine.org/viewforum.php?f=25 .I am not finding the solution.So it would be better to directly post the answer here itself. Actually I know it is not possible close the window until unless they opened by script,But if you have any other suggestion about this so i can implement and that will meet the requirement as well. My requirement is when I will click the CLOSE button that time it has to close that application tab in firefox.This feature is pretty working in the other browser well except in the firefox only.So i hope if there is another way to fulfill this requirement.Thanks in advance once again. Please have a look at this program Here i written a simple program for closing the window and this is working well in other browser as i tested but not in firefox .....

<meta http-equiv="Content-Type" content="text/html;charset=utf-8"> <title>Hello World!</title> <title>Closing the Window...</title>

Close the Window...

<input type="button" value="Close" onclick="window.open('','_parent',''); window.close();">

more options

When you run window.open() into _parent, you are navigating the current window to a different page, thus unloading the page containing your running script. I think Firefox may be terminating the script when you unload the page in which it is running.

more options

Good Mrng, Still this problem is there so please give any suggestion that will meet the requirement.And if you have any code that will close the window in firefox so i can implement in my project. Now it is really become critical for me so ,thanks in advance

more options

To avoid confusing other readers of this thread, can you un-mark my earlier reply as solving your problem?

more options

Ok could we close IFrame pop-up cross domain in firefox.

more options

Hi,

I am also facing the same problem in our project, can someone please let me know if you are able to resolve this issue, if so what is the fix/resolution for it ?

Thanks in advance for your help.

Thanks, Gopi.