私は私を殺しているこの問題を抱えています;(
私は次のHTMLを持っています.すべてのテキストはcssによって隠されています.
<p><b><a class="titulo" href="#">Title</a></b></p>
<div class='texto'><p>Some text</p></div>
<p><b><a class="titulo" href="#">Title</a></b></p>
<div class='texto'><p>Some text</p></div>
<p><b><a class="titulo" href="#">Title</a></b></p>
<div class='texto'><p>Some text</p></div>
<div class='callToAtion bottomline'>
<a class="btnMeInteresa" href="#">Me interesa</a>
<a href="#">No, gracias</a>
</div>
すべてのテキストが非表示になっている場合にのみ、ボトムライン クラスを表示したいと考えています。次のjqueryがありますが、機能しません:
$(document).ready(function(){
$('.titulo').click(function(){
$($(this).closest('p').next()).slideToggle();
if ($('.texto:visible').length === 0){
$('.bottomline').show();
}
else {
$('.bottomline').hide();
}
return false;
})
});
何か案は?前もって感謝します!