Skip to content

Instantly share code, notes, and snippets.

@samarpw
Forked from cowboy/jquery.ba-focus.js
Created May 19, 2021 04:53
Show Gist options
  • Save samarpw/8a07811bc044b93c414066dfc2995425 to your computer and use it in GitHub Desktop.
Save samarpw/8a07811bc044b93c414066dfc2995425 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 );
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment