Last active
December 15, 2015 22:59
-
-
Save foo9/5336802 to your computer and use it in GitHub Desktop.
remove forcus dotted outline (for firefox)
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
var selectElems = document.getElementsByTagName("select"); | |
for (var i = 0, iz = selectElems.length; i < iz; i++) { | |
selectElems[i].onfocus = selectElems[i].blur; | |
} |
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
*:focus { | |
outline: none; | |
} | |
*::-moz-focus-inner { | |
border: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment