I am using onBeforeUnload API (patched version for D7) to perform some server side action when user decides to leave the page. It works fine to provide a warning message to the user. But if disable the alert and try to just do some server side action, it does not work. I am trying to do a post request just before return without returning any alert.
/**
* Install the Drupal behavior.
*
* This function will be called by Drupal.attachBehaviors() in misc/drupal.js.
*/
(function ($) {
Drupal.behaviors.onBeforeUnloadExample = {
attach: function (context, settings) {
if (!Drupal.onBeforeUnload.callbackExists('onbeforeunload_example')) {
Drupal.onBeforeUnload.addCallback('onbeforeunload_example', Drupal.onBeforeUnloadExample);
}
}
}
/**
* onBeforeUnload Example callback.
*
* This function will be called by onBeforeUnload API when the user leaves the
* page.
*
* The string returned here will be prompted to the user, so do NOT return
* anything if you do not need to.
*/
Drupal.onBeforeUnloadExample = function() {
if (Drupal.settings.onBeforeUnloadExample.showWarning) {
$.post("http://localhost/tcquiz/timelog.php", { name: "JohnDOE", time: "2pm" } );
return true;
}
};
}(jQuery));
Any help is greatly appreciated!