ネストされた div と jQuery のクリック機能に問題があります。.header-fb、.header-twitter、または .header-linkedin をクリックしても結果が得られません。コンソールにエラーはありません。何が起こっているのかわかりません。これらのクラスには背景画像がありますが、それが問題になるかどうかはわかりません。コードは次のとおりです。
<div>
<div id="header-social" class="four columns mobile-two">
<div class="header-fb"><a href="http://www.facebook.com" > </a></div>
<div class="header-twitter"><a href="https://twitter.com" > </a></div>
<div class="header-linkedin"><a href="http://www.linkedin.com/"> </a></div>
</div>
およびJavaScript:
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery(".header-fb").click(function(){
window.location=jQuery(this).find("a").attr("href");
return false;
});
jQuery(".header-twitter").click(function(){
window.location=jQuery(this).find("a").attr("href");
return false;
});
jQuery(function() {
jQuery('.header-linkedin').click(function(){
window.location=jQuery(this).find("a").attr("href");
return false;
});
});
});
</script>