Skip to content

Instantly share code, notes, and snippets.

@s9011514
Created April 28, 2013 11:42
Show Gist options
  • Save s9011514/5476657 to your computer and use it in GitHub Desktop.
Save s9011514/5476657 to your computer and use it in GitHub Desktop.
使用jQuery和CSS去除超連結虛線 http://sofree.cc/jquery-css-outline/
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script>
jQuery(function($){
$("a").focus(function(){
$(this).blur();
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment