コード:
<h1><a href="#">link</a></h1>
<script>
$("a").click(function (e) {
e.preventDefault();
});
</script>
リンクをクリックすると、小さな境界線が残ります:
これは Firefox と Internet Explorer 10 で確認しました。Chrome や Bootstrap なしでは発生しません。
コード:
<h1><a href="#">link</a></h1>
<script>
$("a").click(function (e) {
e.preventDefault();
});
</script>
リンクをクリックすると、小さな境界線が残ります:
これは Firefox と Internet Explorer 10 で確認しました。Chrome や Bootstrap なしでは発生しません。
これを試して:
$("a").click(function (e) {
e.preventDefault();
$(this).css("outline", "none");
});
This works fine
$("a").click(function (e) {
e.preventDefault();
$("a").css("text-decoration","none");
});
http://jsfiddle.net/U7Y3r/1/
to get back the same effect, again, http://jsfiddle.net/U7Y3r/2/