Skip to content

Instantly share code, notes, and snippets.

@foo9
Last active December 15, 2015 22:59
Show Gist options
  • Save foo9/5336802 to your computer and use it in GitHub Desktop.
Save foo9/5336802 to your computer and use it in GitHub Desktop.
remove forcus dotted outline (for firefox)
var selectElems = document.getElementsByTagName("select");
for (var i = 0, iz = selectElems.length; i < iz; i++) {
selectElems[i].onfocus = selectElems[i].blur;
}
*: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