Ok。私は次のスクリプトを持っています:
$('#exhibitions .item.plain').toggle(
function() {
$(this).css({
'height': '302px',
'z-index': '10',
'background': '#3F94AB'
});
$(this).find('p.title').css('color', '#E6E6E6');
$container.isotope('reLayout');
},
function() {
$(this).css({
'height': "130px",
'z-index': '0',
'background': '#CCC'
});
$(this).find('p.title').css('color', '#353334');
$container.isotope('reLayout');
});
一方.item.plain
、ネストされた.を持つdivに与えられanchor
ます。そして、クリックすると明らかな))toggle()
が発生します。
<div class="item plain">
<!-- some stuff -->
<a href="url I want to go"></a>
</div>
これを修正するにはどうすればよいですか?
ありがとう!