Skip to content

Instantly share code, notes, and snippets.

@nmsmith22389
Last active January 1, 2017 03:10
Show Gist options
  • Save nmsmith22389/538ec24d053fdf88fdcec0e23c221671 to your computer and use it in GitHub Desktop.
Save nmsmith22389/538ec24d053fdf88fdcec0e23c221671 to your computer and use it in GitHub Desktop.
Disable input outline for mouse only
$(document).ready(function() {
$("body").on("mousedown", "*", function(e) {
if (($(this).is(":focus") || $(this).is(e.target)) && $(this).css("outline-style") == "none") {
$(this).css("outline", "none").on("blur", function() {
$(this).off("blur").css("outline", "");
});
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment