vote up 13 vote down star
2

I would like to find out, in Javascript, which element currently has focus. I've been looking through the DOM and haven't found what I need, yet. Is there a way to do this, and how?

Edit: The reason I was looking for this:

What I'm trying to do is make keys like the arrows and enter navigate through a table of input elements. Tab works now, but enter and arrows do not by default it seems. I've got the key handling part set up but now I need to figure out how to move the focus over in the event handling functions.

flag

Duplicate: stackoverflow.com/questions/483741/…? – cic Jan 31 at 12:12

4 Answers

vote up 12 vote down check

If you're trying to find out which form field has focus, you can't. The best you can do is add a "focus" event handler to all fields, and record the last-focused field in a variable somewhere. You can also add a "blur" handler, and clear the variable if you get a blur event on the last-focused field.

EDIT: Thanks to Gregers for pointing out document.activeElement now works in all major browsers. So you can use that instead.

link|flag
2  
Things have changed since the question was answered. Safari 4 was released yesterday, with support for document.activeElement property. So now it's supported in the latest release of all major browsers (IE,FF,Safari,Chrome,Opera). I'd only use the event hack as a fallback for older browsers: if(!document.activeElement) { /* add event-listeners to set document.activeElement for older browsers */ } – gregers Jun 9 at 15:21
vote up 11 vote down

As said by JW, you can't find the current focused element, at least in a browser-independent way. But if your app is IE only (some are...), you can find it the following way :

document.activeElement
link|flag
1  
FF3 too. This is actually part of the HTML5 spec around "focus management". – Crescent Fresh Jan 31 at 0:37
Doesn't work in Chrome. :( – Brad8118 Mar 31 at 17:23
It works in the current version of Chrome and Opera (9.62). Does not work in Safari 3.2.3 on OS X, but it works in Safari 4 that was released yesterday :) – gregers Jun 9 at 15:02
vote up -1 vote down

Untested, but you might consider using a CSS selector framework built into a javascript library. For example, with Dojo/sizzle:

var elements = dojo.query('*:focus');
if (elements) {
    //process focused-elements here
}

For better performance, you can qualify the scope and element. For example, to look for the focused input within form with id frm1:

var elements = dojo.query('input:focus', dojo.byId('frm1'));
link|flag
I don't believe that dojo or jQuery/Sizzle support the focus pseudo-class... Have you seen this documented anywhere? – Prestaul Jan 31 at 3:31
Dojo doesn't support :focus either. – scotts Jun 18 at 21:22
vote up 0 vote down

Just putting this here to give the solution I eventually came up with.

I created a property called document.activeInputArea, and used jQuery's HotKeys addon to trap keyboard events for arrow keys, tab and enter, and I created an event handler for clicking into input elements.

Then I adjusted the activeInputArea every time focus changed, so I could use that property to find out where I was.

It's easy to screw this up though, because if you have a bug in the system and focus isn't where you think it is, then its very hard to restore the correct focus.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.