Tagged Questions
0
votes
0answers
60 views
Force the users to logout properly
I'm developing an internal web application (asp.mvc + JS) that performs a key function for its users. Once they migrate away (navigate, close tab, close browser) the app stops.
Ideally what I would ...
0
votes
1answer
172 views
jQuey - unload vs java script - onbeforeunload
working on a way go recognize when user exits my website.
ive read some threads on the site aboout methods do to this with ajax calls simulating pings
ive found documantation for unload event that ...
0
votes
0answers
40 views
Give user text to copy onbeforeunload
I have a page where people can build an itinerary of events. I do not require users to login to use this feature, and a unique URL is built for them as they put their itinerary together.
There is a ...
1
vote
2answers
560 views
javascript's unload and beforeunload alternative
I need to monitor when the user moves away from a page (to a different site not the same site) or closes the window/tab. I can achieve that with $(window).bind('unload', function() {}); but onload is ...
0
votes
2answers
256 views
how to alter beforeunload event in javascript
Hello is calling an ajax function possible before someone's decide to leave the page. I mean i can ask the user if user wants to leave or stay. But i dont know how to alter behaviour when user click ...
0
votes
2answers
4k views
jQuery unload with an AJAX call not working in Chrome
This is my very simple code snippet:
$(window).unload(function() {
$.ajax({
url: 'stats_pages.php?last_id='+$("#last_id").val(),
});
});
Simple enough. The AJAX call ...
1
vote
1answer
2k views
onunload Ajax function not working in Chrome
I am developing an app that needs to store updated data in a database when the user leaves teh page. To do this I have bound a Ajax funtion to the "onunload" event of the page. This works in every ...
6
votes
5answers
802 views
Autosave with “unload” event and ajax call on logout : order of actions is causing problem
I'm using a AutoSave feature on an online editor.
When an user leaves the page (detected with unload or beforeunload event), I'm sending a AJAX request (async = false) to save the data.
I have a ...
0
votes
1answer
258 views
How to figure out if the window is closing in the callback of jQuerys unload(); method
Is it possible to figure out just wich type of event triggered $(window).unload();? To be a bit more specific, I'm only interested in the event when a user has closed the window (a popup), not when ...
3
votes
4answers
844 views
How to reliably send a request cross domain and cross browser on page unload
I have javascript code that's loaded by 3rd parties. The javascript keeps track of a number of metrics, and when a user exits the page I'd like to send the metrics back to my server.
Due to XSS ...
