Skip to content

Instantly share code, notes, and snippets.

@cowboy
Created June 23, 2010 14:47
Show Gist options
  • Save cowboy/450017 to your computer and use it in GitHub Desktop.
Save cowboy/450017 to your computer and use it in GitHub Desktop.
:focus - get the currently focused element
// Public domain, really.
jQuery.expr[':'].focus = function( elem ) {
return elem === document.activeElement && ( elem.type || elem.href );
};
@cowboy
Copy link
Author

cowboy commented Jun 2, 2011

It works like this: :focus selector (note that recent versions of jQuery include this selector)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment