Guest

Untitled

By: a guest on Jan 28th, 2012  |  syntax: None  |  size: 0.42 KB  |  hits: 17  |  expires: Never
download  |  raw  |  embed  |  report abuse
Copied
  1. function doClose() {
  2.     if (formHasChanged) {
  3.         if (confirm('You are now leaving the page and any data you have entered will be lost.\nDo you want to proceed?\nClick Ok if you wish to save and continue or click Cancel to lose your unsaved changes.')) {
  4.             Fbyid("saveButton").click();
  5.         }
  6.         else { return false; }
  7.     }
  8.     return true;
  9. }
  10. window.onbeforeunload = function() { doClose() }