git.asbjorn.biz
/
jquery.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9d8bd16
)
Add a try/catch to handle the exception thrown by unloaded iframes in IE. Fixes ...
author
John Resig
<jeresig@gmail.com>
Thu, 10 Dec 2009 00:00:59 +0000
(16:00 -0800)
committer
John Resig
<jeresig@gmail.com>
Thu, 10 Dec 2009 00:00:59 +0000
(16:00 -0800)
src/event.js
patch
|
blob
|
history
diff --git
a/src/event.js
b/src/event.js
index
afe92af
..
f766896
100644
(file)
--- a/
src/event.js
+++ b/
src/event.js
@@
-896,7
+896,10
@@
jQuery( window ).bind( 'unload', function() {
for ( var id in jQuery.cache ) {
// Skip the window
if ( id != 1 && jQuery.cache[ id ].handle ) {
- jQuery.event.remove( jQuery.cache[ id ].handle.elem );
+ // Try/Catch is to handle iframes being unloaded, see #4280
+ try {
+ jQuery.event.remove( jQuery.cache[ id ].handle.elem );
+ } catch(e) {}
}
}
});