window.onbeforeunload event not sending ajax request on Server side
I want to logout the user when user closes the browser or tab. I have implemented the window.onbeforeunload
event but on this method ajax request is not working.
window.onbeforeunload = function() {
var d = {
userid: 123
};
$.ajax({
type: 'POST',
url: 'https://example.com/api/logout',
data: d,
async: false
});
return null;
};
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
need html perhaps