このサイトのナビゲーション バーのアクティブなリンクとホバーの背景画像を保持しようとしています
サイトリンク: http://67.23.226.231/~edutubei/onepage/#about
以下のコードを使用して
$(document).ready(function() {
$('#navigation a[href^="#' + location.pathname.split("#")[1] + '"]').addClass('current');
});
以下のcssで
ul.navigation .current{
background:url(../images/current_page.png) no-repeat right bottom;
}
ul.navigation .current a, ul.navigation .current a:hover{
color:#FFF;
}
しかし、これは機能していません