Поиск в Поддержке

Избегайте мошенников, выдающих себя за службу поддержки. Мы никогда не попросим вас позвонить, отправить текстовое сообщение или поделиться личной информацией. Сообщайте о подозрительной активности, используя функцию «Пожаловаться».

Learn More

java script code for Detecting browser window closing event in Firefox -

  • 2 ответа
  • 12 имеют эту проблему
  • 11 просмотров
  • Последний ответ от jagadeesanc

more options

java script code for Detecting browser window closing event, in Firefox, when user closing the firefox window.

if any body knows the solution please let me know.

java script code for Detecting browser window closing event, in Firefox, when user closing the firefox window. if any body knows the solution please let me know.

Все ответы (2)

more options

<body onbeforeunload="ConfirmClose()" onunload="HandleOnClose()">

where ConfirmClose() asks you if you really want to close, and HandleOnClose() does something as you close the tab.

more options

Thanks for the instant replay. But this solution will not help me. because when we click on each link it will call the ConfirmClose() function. it should not for me. and i am using master page. and it contains so many links. when we close the home page then only i need to find the close event.