Created
May 10, 2014 00:10
-
-
Save siriokun/3e1303a79535aeef5267 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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