Opened 14 years ago
Closed 13 years ago
#4418 closed bug (duplicate)
beforeunload doenst work correctly
Reported by: | Jorik | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 1.4 |
Component: | unfiled | Version: | 1.3.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
$(window).bind("beforeunload") and unbind() does not work correctly. The only way to use it now is good old javascript.
It now only works if you return false in the jquery way:
$(window).bind("beforeunload", function() { return false; })
but this shows the message 'false', and if you return a string the function doenst work anymore.
the way to let is work without jquery:
bind event window.onbeforeunload = function() {
return "Save your data!";
};
unbind the event window.onbeforeunload = null;
Change History (2)
comment:1 Changed 14 years ago by
comment:2 Changed 13 years ago by
Resolution: | → duplicate |
---|---|
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
This is a duplicate of #4106 which was re-opened by Brandon.