Ajax is asynchronous.
When you refresh (or close)your browser, beforeunload
is being called. And it means as soon as beforeunload
is finished executing, page will refresh (or close).
When you do an ajax request, (since its asynchronous) javascript interpreter does not wait for ajax success
event to be executed and moves down finishing the execution of beforeunload
.
success
of ajax is supposed to be called after few secs, but you dont see it as page has been refreshed / closed.
Side note:
.success()
method is deprecated and is replaced by the .done()
method
Reference