vote up 0 vote down star
1

How can you select an element that has current focus?

There is no :focus filter in jQuery, that is why we can use something like this:

$('input:focus').someFunction();
flag
What are you actually trying to do so I can know if there is a better approach – TStamper Feb 5 at 14:48

2 Answers

vote up 3 vote down check

Really the best way to do it is to setup a handler for the onFocus event, and then set a variable to the ID of the element that has focus.

something like this: var id;

$("input").focus(function () { id = $(this).attr('id'); });

link|flag
vote up 2 vote down

Have you tried

$.extend($.expr[':'], {
    focused: function(elem) { return elem.hasFocus; }
});

alert($('input :focused').length);
link|flag

Your Answer

Get an OpenID
or

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