Skip to content

Instantly share code, notes, and snippets.

@siriokun
Created May 10, 2014 00:10
Show Gist options
  • Save siriokun/3e1303a79535aeef5267 to your computer and use it in GitHub Desktop.
Save siriokun/3e1303a79535aeef5267 to your computer and use it in GitHub Desktop.
//jQuery
if ( $(".some-element").filter(":focus").length >= -1 ) {
//$(".some-element") contains 1 item, and it is focussed
}
if($(".some-element")[0] == document.activeElement) {
//first element of object is selected
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment