5

I am facing strange issue. when closing complete safari browser, I need to call one function using jquery post. but this is not calling when close safari browser. But beauty is working in all other browser.

Below is my piece of code,

<script language="JavaScript">
window.onbeforeunload = confirmExit;
function confirmExit()
{
   $.post("test.php");
}
</script>

Please kindly get this work in safari.

Thanks, Dinesh Kumar Manoharan

David Tang
  • 92,262
  • 30
  • 167
  • 149
mymotherland
  • 7,968
  • 14
  • 65
  • 122

2 Answers2

8

This may be because you are doing an asynchronous post, and Safari stops running the JavaScript (due to the page being unloaded) before it issues the request. Try making the call blocking by using $.ajax instead of $.post and setting async to false. Something like (untested):

function confirmExit() {
    $.ajax({
        'async': false,
        'type': 'POST',
        'url': 'test.php'
    });
}
Day
  • 9,465
  • 6
  • 57
  • 93
  • @Dinesh. No problem, and welcome to stackoverflow. Please remember to accept the answer that best solves your question (you can accept only one answer) and consider upvoting answers you found useful (you can upvote more than one answer). – Day Apr 05 '11 at 21:37
  • why safari is developed this type of mistake? yet those fellows are not updated. – Rijo Mar 15 '18 at 14:41
1

According to Mozilla MDC, window.onbeforeunload won't return anything in Safari, so modify your code according to the linked example above.

There's another thread here on SO about this. Hope it helps.

Community
  • 1
  • 1
fabrik
  • 14,094
  • 8
  • 55
  • 71