I'm using Ctrl+Left / Ctrl+Right in a GreaseMonkey script as a hotkey to turn back / forward pages. It seems to works fine, but I want to disable this behavior if I'm in a text edit area. I'm trying to use document.activeElement to get the page active element and test if it's an editable area, but it always returns "undefined".
|
|
|
|
|
|
|
document.activeElement works for me in FF3 but the following also works
|
||
|
|
|
|
@Jimmy: I'm using FF 2.0.0.16 until my extensions runs in FF3. It looks like activeElement doesn't work in FF2, but the focus/blur events did the trick, thanks |
||
|
|
|
|
element.activeElement is part of HTML5 spec but is not supported by most browsers. It was first introduced by IE. |
||
|
|
