Advertisement
Guest User

Untitled

a guest
Nov 27th, 2014
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. window.onbeforeunload = function () {
  2. return 'message'
  3. };
  4.  
  5. var tempDisableBeforeUnload = function() {
  6. var obu = window.onbeforeunload;
  7. if (obu) {
  8. window.onbeforeunload = null;
  9. setTimeout(function() {
  10. window.onbeforeunload = obu;
  11. }, 0);
  12. }
  13. }
  14. $("form.noWarnOnSubmit").submit(tempDisableBeforeUnload);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement