7

Is there any way to detect mobile browser close event? I need to forcefully delete a cookie on browser close. I have already tried my luck with window.onbeforeunload and window.unload but they doesn't work for mobile browsers. Search on the web a lot but didn't get any solution.

Thanks in advance

Ankur Aggarwal
  • 2,993
  • 5
  • 30
  • 56

2 Answers2

3

I'm sorry but it's just impossible with Javascript... You can prevent the action of closing tab but not to do something when it will be close...

How to Detect Browser Window /Tab Close Event?

Community
  • 1
  • 1
Kénium
  • 105
  • 1
  • 10
2

Use $(window).blur(function() for mobile browsers.

priyaqb
  • 827
  • 7
  • 6