Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.