Is there any way to use window.onbeforeunload on Mobile Safari for iOS devices?

38,812

Solution 1

I see that it's an old question, but i faced this problem recently.

I'm using window.unload and it works fine in ios browsers (although if you look at Apple documentation it seems to be deprecated and they recommend to use document.pagehide)

Solution 2

If you really need it, you cant just get all links, forms and DOM objects that have a handler changing the url and make those wait until you've done what you want. For the links, you get them by getElementsByTagName, check if the href starts with anything but a # and just add your onbeforeunload function add onclick (which will be invoked before the href is looked at). Same for the forms but with onsubmit. And finaly, for the elements changing the href with JavaScript, you should make sure when you add the lsitener that you call your onbeforeunlaod function (or, if you use DOM0 or DOM1 listeners, you can just add some class and then use a global script that checks all elements with the class and adds it to the event listener with a closure.

But you should normaly be able to avoid the use of this event (probably using cookies to store the thing you wanted to send every x seconds and allowing to, in the worst case, have a look at it next time the user loads a page and, in the best case, be able to send an Ajax request at onbeforeunload or onunload which, even if it sends only the http headers, woudl allow you to get what you want).

Solution 3

Based on Xavier's answer, I devised a solution along these lines:

function doStuff() {
  // here goes your logic
}

function isSafariMobile() {
  return navigator && /Safari/.test(navigator.userAgent) && /iPhone|iPad/.test(navigator.userAgent)
}

function addWatcherToLinks(baseNode) {
  if (!baseNode || !baseNode.querySelectorAll) { return; } // ignore comments, text, etc.
  for (const link of baseNode.querySelectorAll("a")) {
    link.addEventListener('click', doStuff);
  }
  for (const form of baseNode.querySelectorAll("form")) {
    form.addEventListener('submit', doStuff);
  }
}

// ...when the page loads...
// we watch the page for beforeunload to call doStuff
// Since Safari mobile does not support this, we attach a listener (watcher) to each link and form and then call doStuff.
// Also, we add such a watcher to all new incoming nodes (DOMNodeInserted).
if (isSafariMobile()) {
  addWatcherToLinks(document);
  window.addEventListener("DOMNodeInserted", (event) => { addWatcherToLinks(event.target); }, false);
} else {
  window.addEventListener('beforeunload', doStuff);
}

This solution has some limitations. The biggest one is that it attaches itself to all forms and all links. Sometimes this might not be desired. If you need it you can skip some nodes (e.g. mark them with a particular data- attribute).

Share:
38,812

Related videos on Youtube

8three
Author by

8three

Updated on July 23, 2020

Comments

  • 8three
    8three almost 4 years

    Looks like Apple has disabled the window.onbeforeunload event for iOS devices (iPhone, iPad, iPod Touch). Unfortunately I can't find any documentation as to why this event doesn't work in Mobile Safari.

    Does anyone know if there's a reliable alternative to this function? Android's browser appears to support it just fine, and the Safari desktop application also supports the onbeforeunload event without issue.

  • Jim Blackler
    Jim Blackler about 13 years
    Thanks Xavier, all possibilities, but these all require a lot of DOM modification which in the case of my application is impractical as it might interfere with the functioning of the hosted pages.
  • xavierm02
    xavierm02 about 13 years
    You don't need to add the event on every single link and so on, you can use event delegation. You can just put one on the body and use e.srcElement || e.target and then check if it'll change the url. This way, you don't need to put that many elements. But you might still need to put the onsubmit on the forms themselfves... not sure about that.
  • Edwin Daniels
    Edwin Daniels over 9 years
    Any options for the scenario the user is actually closing the page, as opposed to moving to another page via an element?
  • xavierm02
    xavierm02 over 9 years
    Nope. If it were on a computer, you could detect the mouse getting out of the window and get ready for it. The best would probably be to tell the server " I'm still here" all the time so that it can deduce that you've left when you don't, so putting a server timeout. It might be better to use websockets for that instead of many Ajax calls. Other than that, the only thing I can think of is always force the user too have something focused an send the message at onblur ( and maybe add a little while true after it). Anyway, nothing you can use without annoying users.
  • CpnCrunch
    CpnCrunch almost 8 years
    Neither pagehide nor unload appear to be working on iOS 9 when the user reloads the page.
  • diegocr
    diegocr almost 4 years
    So... what shall we use? :)