Opened 11 years ago
Closed 10 years ago
#6760 closed bug (invalid)
Have a Probleman in event unload or onbeforeload
Reported by: | rafaeldorazio | Owned by: | |
---|---|---|---|
Priority: | undecided | Milestone: | 1.4.3 |
Component: | event | Version: | 1.4.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
$(document).ready(function() {
$(window).unload(function() {
$.get('Sair.ashx', { user: document.getElementById('lblDe').innerHTML }); alert('postget');
});
});
If you remove the alert () code, it does not work in firefox 3.6.6
Attachments (4)
Change History (5)
Changed 11 years ago by
Changed 11 years ago by
Attachment: | Chat.aspx.vb added |
---|
Changed 11 years ago by
Changed 11 years ago by
Attachment: | Login.aspx added |
---|
comment:1 Changed 10 years ago by
Priority: | → undecided |
---|---|
Resolution: | → invalid |
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
If you perform an async event in an unload handler, there is no guarantee that it will complete before the page unloads. The alert gives the ajax the time it needs to complete.