ファンシーボックスでiframeをロードできないjQueryプラグインまたはWordpressの他の何かを見つけるのに苦労しています。
簡単な Fancybox の html が機能し、以下が機能するバージョンです。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html><head>
<!-- Add jQuery library -->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
<link rel='stylesheet' id='easy-fancybox.css-css' href='http://www.wp-responsive-themes.com/wp-content/plugins/easy-fancybox/easy-fancybox.css.php?ver=1.3.4' type='text/css' media='screen' />
<script type='text/javascript' src='http://www.wp-responsive-themes.com/wp-content/plugins/easy-fancybox/fancybox/jquery.fancybox-1.3.4.pack.js?ver=1.3.4'></script>
</head>
<body>
<a href="http://wp-responsive-themes.com/" data-fancybox-type="iframe" title="preview" class="preview fancybox-iframe">Preview</a>
<script type="text/javascript">
jQuery(document).ready(function() {
$("a.preview").fancybox({
'Width' : 960 ,
'Height' : 640,
'hideOnContentClick': false,
'type':'iframe'
});
});
</script>
</body>
</html>
しかし、fancybox はページ (Wordpress) に iframe をロードできません。
以下のページで「iPhone 5 Vertical Orientation Preview」をクリックするとiframeが開くはずでした
http://www.wp-responsive-themes.com/2012/myapp-adaptive-wp-theme-for-app-developers-429/
助けが必要
敬具