Tagged Questions
2
votes
2answers
135 views
Onunload, onbeforeunload - guidance requested
I have a web server that generates questions for students of a particular subject. The web server needs to keep track of how much time each student has spent on a particular set of questions.
The web ...
1
vote
1answer
155 views
AJAX calling being aborted before it is complete with Backbone.js
I've followed this answer on how to abort all AJAX requests on page redirection. It basically uses ajaxSend to add the xhr request object to an array and then ajaxComplete to remove that object from ...
0
votes
1answer
64 views
onbeforeunload works also with refreshing
I did this question few days ago (Java session deleted after page refresh) and I didn't have an answer. Maybe because the problem was in the onbeforeunload event.
with:
<body ...
0
votes
0answers
129 views
Ajax call not working in onbeforeunload event
I have functionality in which I need to make a ajax call to update the database value before closing the browser using 'X' button of browser. I have used below code in the header of associated file:
...
0
votes
0answers
67 views
clicking back during ajax file upload
I have this 'beforeunload' function which is triggered during ajax uploading to warn users that leaving the page may terminate uploading prematurely. and it works fine if the user clicks a link or ...
0
votes
0answers
59 views
Asychronous XHR Request in onbeforeunload on firefox18
i have an application that sends some user information every 5 seconds and when a user leaves the page. with some workarounds this has always worked (e.g. waiting a few milliseconds in chrome...).
...
0
votes
2answers
82 views
onbeforeunload while page loads
I'm just curious if things like this is possible >> While still loading a web page, is it possible to return an onbeforeunload like dialog when a user try to navigate to other page or close the ...
0
votes
0answers
49 views
Detect AJAX Internet Failure vs Navigating Away
If an AJAX request callback gives me request.status == 0 then I know it was not a server error, but instead some kind of connection error. In all likely hood it was on the client side. Thus I usually ...
0
votes
1answer
236 views
how to send a checkbox using ajax without clicking any submit button when div unloads
I'm trying to set a done button on my fancybox, when the user checks the checkbox it will be mark as done, the checkbox value will be submitted after the div on the fancybox has unload, and there is ...
0
votes
1answer
761 views
cant get custom message alert in page leave “onbeforeunload” event
I put following script to prevent leave page meanwhile processing steps
<script language="JavaScript">
window.onbeforeunload = confirmExit;
function confirmExit()
{
JQObj.ajax({
type: ...
0
votes
2answers
137 views
Mysql and onbeforeunload
Hi I'm trying to delete a row in a mysql database when the user leaves a page on my website but it's not working for some reason. I know the onbeforeunload works because if i delete everything in ...
0
votes
0answers
66 views
Unloading on Ajax Refresh
Is there a way to get code that is running in a same domain iframe to trigger onunload or onbeforeunload when that iframe is refreshed or removed using ajax to change only part of the page?
I've ...
1
vote
2answers
121 views
php / js - how do I delete a file when the page unloades?
I have an issue here, I'm not sure if it's possible but I would like to delete a file when the user leaves the page... I currently have a php script (see below) which handels the deleting of a file, ...
1
vote
1answer
143 views
How to reliably run code on page close (e.g. “disconnected” message on site chat)
I have a 2-person site chat (us and any questioning clients) and I'd like to display "$client has disconnected" when they disconnect through any way, including:
Pressing back on the browser
Closing ...
0
votes
2answers
368 views
Javascript to detect and send a message to server if the window is closed
I want to know what the answer was for Window Close Confirmation to send a message to server regarding to window close!
I found this, but this doesn't return the user answer.
window.onbeforeunload = ...
7
votes
2answers
1k views
Javascript: suppress “This page is asking you to confirm that you want to leave” popup on onbeforeunload
When a user leaves a page, I need to ask him if he wants to perform a particular action before leaving.
<script type="text/javascript">
$(document).ready(function() {
...
0
votes
2answers
1k views
'onbeforeunload' Fires Twice
I want to send an ajax request when a user leaves a page or closes the window.
Here is my code inside :
<script type="text/javascript">
function sendajax(){
$.ajax({
...
3
votes
1answer
864 views
ajax and onbeforeunload
I want to inform my server that a user has closed browser tab/window with our app.
I found out that running an ajax call with async:false binded to a window.beforeunload evet will work and it does. ...
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 ...
0
votes
1answer
410 views
Ajax during javascript window.beforeunload: returning error
I need to perform an ajax request to send some data server-side every time the user decides to leave the page. However I do not wish to disrupt them in leaving: I do not want popup messages to show ...
6
votes
5answers
838 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 ...
1
vote
1answer
601 views
What is the definitive way to call the jquery ajax function before a window unloads?
I need to call the jquery ajax() function before a window unloads. In my case its a POST and I dont care about the return result, I just want a database to be updated.
So the answer seems to be to ...
2
votes
1answer
2k views
How to disable beforeunload action when user is submitting a form?
I have this little piece of code:
<script>
$(window).bind('beforeunload', function() {
$.ajax({
async: false,
type: 'POST',
url: '/something'
});
});
</script>
I ...
3
votes
1answer
454 views
How to make Connect not callback when reload page in YUI?
I found this a common issue, but it seems that there is no obvious solution after googling.
In my page, some user action would trigger AJAX request. With YUI 2.X, the code is like below:
...
5
votes
2answers
453 views
Performing GET request before leaving page - Javascript
if a GET request is made as follows
$(window).bind('beforeunload', function() {
// GET request
});
and the page is abandoned before the GET request is completed,
will the destination server ...
3
votes
1answer
1k views
Javascript synchronous AJAX timeout
My Javascript needs to send some data to a server when the page closes, which I currently do with a synchronous AJAX (SJAX?) request in window.onbeforeunload. The problem with this, of course, is that ...
9
votes
8answers
6k views
Internet Explorer calling window.onbeforeunload on window.open and AJAX calls
Ok, I have spent a while on this problem and this is what I have gathered:
If you make an AJAX call in IE7 and you have a window.onbeforeunload function specified, it calls the onbeforeunload ...
1
vote
3answers
751 views
Dealing with unsaved form data when user closes the browser
I'm having hard time trying to figure out how to auto-save user data in a form when the browser is being closed or user changes the page. The onBeforeUnload event is OK when you want to open a dialog ...
1
vote
1answer
2k views
ASP.NET AJAX suppress onbeforeunload for AJAX requests from updatepanel
I am hooking the window.onbeforeunload event in an aspx page. I need that not to fire if I page a GridView that's in an UpdatePanel on the same page.
I have tried hooking the PageRequestManager's ...
18
votes
8answers
22k views
Can I prevent window.onbeforeunload from being called when doing an AJAX call
I have an AJAX-based grid control.
We hook into the window.onbeforeunload event to check if they have unsaved data and if so present them with a message "Are you sure you want to navigate away...you ...
