diff options
author | Jörn Zaefferer <joern.zaefferer@googlemail.com> | 2009-12-21 16:10:21 -0500 |
---|---|---|
committer | jeresig <jeresig@gmail.com> | 2009-12-21 16:10:21 -0500 |
commit | 03481a52c72e417b01cfeb499f26738cf5ed5839 (patch) | |
tree | 549d8172bec91d9e3b8aacde3e929fdede9a5fd2 /src/support.js | |
parent | 5dc6b7ce3469eaadb37a151d449e8d36571d1894 (diff) | |
download | jquery-03481a52c72e417b01cfeb499f26738cf5ed5839.tar.gz jquery-03481a52c72e417b01cfeb499f26738cf5ed5839.zip |
Stop trying to emulate the focus/blur event in IE, doesn't work as one might expect, anyway. Instead, implement the focusin/focusout events in all other browsers - which creates a much better parity across all browsers. Uses event capturing instead of bubbling to make it happen. Thanks to Alexander for the recommendation and to Joern Zaefferer for the original focus/blur delegation code.
Diffstat (limited to 'src/support.js')
-rw-r--r-- | src/support.js | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/support.js b/src/support.js index 91ee77d39..249fb1509 100644 --- a/src/support.js +++ b/src/support.js @@ -111,7 +111,6 @@ jQuery.support.submitBubbles = eventSupported("submit"); jQuery.support.changeBubbles = eventSupported("change"); - jQuery.support.focusBubbles = eventSupported("focus"); // release memory in IE root = script = div = all = a = null; |