Last active
September 5, 2015 19:05
-
-
Save rafbm/536465 to your computer and use it in GitHub Desktop.
This file contains 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({ | |
keyup: function(e) { | |
if (e.which == 9) | |
$(this).addClass('focus') | |
}, | |
blur: function() { | |
$(this).removeClass('focus') | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment