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
/** | |
* ♫ Firefox-Proof Focus Styles ♫ | |
* | |
* Define your focus styles this way: a.focus { outline: 2px solid hotpink; } | |
* Only mini-tiny-pico quirk is a slight delay before the focus style appears. | |
* | |
* https://gist.github.com/536465 | |
*/ | |
$('a').bind({ |
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
/** | |
* ♫ A Little Reminder About JavaScript Boolean Evaluations ♫ | |
*/ | |
!!0 // false | |
!!NaN // false | |
!![] // true | |
!!new Array // true |
NewerOlder