記事ページ (single.php) をロードする iframe (#postframe) 内に親ページ (index.php) があります。single.php には、クリックすると Fancybox で開く 4 つのサムネイル (a.group) があります。すべてが正常に機能しますが、すべての index.php ページをカバーする iframe の外にファンシー ボックスを拡張したいと考えています。
これはsingle.php内の私のコードです:
<script type="text/javascript">
$(document).ready(function() {
$("a.group").fancybox({
'overlayShow': true,
'overlayOpacity':0.8
});
});
</script>
どうもありがとう!!!!