I'd like to find the currently focused element in the whole document.
I tried using the :focus pseudoclass introduced with jQuery 1.6:
$(document).find(":focus")
But $(document).find(":focus").length always returns 0
|
I'd like to find the currently focused element in the whole document.
I tried using the
But |
||||
|
|
|
You should be able to use the
If you look at the jQuery documentation for
It's worth noting that if no element currently has focus, |
|||||
|
|
If you want an alternative to
|
||||
|
|